mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-13 03:24:26 +00:00
saari checking in on pink's machine, fixing build, adding generated DOM idl file
This commit is contained in:
parent
f540222165
commit
bd834b5c7f
@ -50,6 +50,9 @@ public:
|
||||
NS_IMETHOD GetSuppressFocus(PRBool* aSuppressFocus)=0;
|
||||
NS_IMETHOD SetSuppressFocus(PRBool aSuppressFocus)=0;
|
||||
|
||||
NS_IMETHOD GetActive(PRBool* aActive)=0;
|
||||
NS_IMETHOD SetActive(PRBool aActive)=0;
|
||||
|
||||
NS_IMETHOD AddCommandUpdater(nsIDOMElement* aUpdater, const nsString& aEvents, const nsString& aTargets)=0;
|
||||
|
||||
NS_IMETHOD RemoveCommandUpdater(nsIDOMElement* aUpdater)=0;
|
||||
@ -69,6 +72,8 @@ public:
|
||||
NS_IMETHOD SetFocusedWindow(nsIDOMWindow* aFocusedWindow); \
|
||||
NS_IMETHOD GetSuppressFocus(PRBool* aSuppressFocus); \
|
||||
NS_IMETHOD SetSuppressFocus(PRBool aSuppressFocus); \
|
||||
NS_IMETHOD GetActive(PRBool* aActive); \
|
||||
NS_IMETHOD SetActive(PRBool aActive); \
|
||||
NS_IMETHOD AddCommandUpdater(nsIDOMElement* aUpdater, const nsString& aEvents, const nsString& aTargets); \
|
||||
NS_IMETHOD RemoveCommandUpdater(nsIDOMElement* aUpdater); \
|
||||
NS_IMETHOD UpdateCommands(const nsString& aEventName); \
|
||||
@ -84,6 +89,8 @@ public:
|
||||
NS_IMETHOD SetFocusedWindow(nsIDOMWindow* aFocusedWindow) { return _to SetFocusedWindow(aFocusedWindow); } \
|
||||
NS_IMETHOD GetSuppressFocus(PRBool* aSuppressFocus) { return _to GetSuppressFocus(aSuppressFocus); } \
|
||||
NS_IMETHOD SetSuppressFocus(PRBool aSuppressFocus) { return _to SetSuppressFocus(aSuppressFocus); } \
|
||||
NS_IMETHOD GetActive(PRBool* aActive) { return _to GetActive(aActive); } \
|
||||
NS_IMETHOD SetActive(PRBool aActive) { return _to SetActive(aActive); } \
|
||||
NS_IMETHOD AddCommandUpdater(nsIDOMElement* aUpdater, const nsString& aEvents, const nsString& aTargets) { return _to AddCommandUpdater(aUpdater, aEvents, aTargets); } \
|
||||
NS_IMETHOD RemoveCommandUpdater(nsIDOMElement* aUpdater) { return _to RemoveCommandUpdater(aUpdater); } \
|
||||
NS_IMETHOD UpdateCommands(const nsString& aEventName) { return _to UpdateCommands(aEventName); } \
|
||||
|
@ -50,6 +50,9 @@ public:
|
||||
NS_IMETHOD GetSuppressFocus(PRBool* aSuppressFocus)=0;
|
||||
NS_IMETHOD SetSuppressFocus(PRBool aSuppressFocus)=0;
|
||||
|
||||
NS_IMETHOD GetActive(PRBool* aActive)=0;
|
||||
NS_IMETHOD SetActive(PRBool aActive)=0;
|
||||
|
||||
NS_IMETHOD AddCommandUpdater(nsIDOMElement* aUpdater, const nsString& aEvents, const nsString& aTargets)=0;
|
||||
|
||||
NS_IMETHOD RemoveCommandUpdater(nsIDOMElement* aUpdater)=0;
|
||||
@ -69,6 +72,8 @@ public:
|
||||
NS_IMETHOD SetFocusedWindow(nsIDOMWindow* aFocusedWindow); \
|
||||
NS_IMETHOD GetSuppressFocus(PRBool* aSuppressFocus); \
|
||||
NS_IMETHOD SetSuppressFocus(PRBool aSuppressFocus); \
|
||||
NS_IMETHOD GetActive(PRBool* aActive); \
|
||||
NS_IMETHOD SetActive(PRBool aActive); \
|
||||
NS_IMETHOD AddCommandUpdater(nsIDOMElement* aUpdater, const nsString& aEvents, const nsString& aTargets); \
|
||||
NS_IMETHOD RemoveCommandUpdater(nsIDOMElement* aUpdater); \
|
||||
NS_IMETHOD UpdateCommands(const nsString& aEventName); \
|
||||
@ -84,6 +89,8 @@ public:
|
||||
NS_IMETHOD SetFocusedWindow(nsIDOMWindow* aFocusedWindow) { return _to SetFocusedWindow(aFocusedWindow); } \
|
||||
NS_IMETHOD GetSuppressFocus(PRBool* aSuppressFocus) { return _to GetSuppressFocus(aSuppressFocus); } \
|
||||
NS_IMETHOD SetSuppressFocus(PRBool aSuppressFocus) { return _to SetSuppressFocus(aSuppressFocus); } \
|
||||
NS_IMETHOD GetActive(PRBool* aActive) { return _to GetActive(aActive); } \
|
||||
NS_IMETHOD SetActive(PRBool aActive) { return _to SetActive(aActive); } \
|
||||
NS_IMETHOD AddCommandUpdater(nsIDOMElement* aUpdater, const nsString& aEvents, const nsString& aTargets) { return _to AddCommandUpdater(aUpdater, aEvents, aTargets); } \
|
||||
NS_IMETHOD RemoveCommandUpdater(nsIDOMElement* aUpdater) { return _to RemoveCommandUpdater(aUpdater); } \
|
||||
NS_IMETHOD UpdateCommands(const nsString& aEventName) { return _to UpdateCommands(aEventName); } \
|
||||
|
Loading…
x
Reference in New Issue
Block a user