diff --git a/content/events/public/nsIEventStateManager.h b/content/events/public/nsIEventStateManager.h index c626abcb86ba..c94c52bbd076 100644 --- a/content/events/public/nsIEventStateManager.h +++ b/content/events/public/nsIEventStateManager.h @@ -53,10 +53,10 @@ class imgIContainer; /* * Event state manager interface. */ -// {C224A806-A99F-4056-85C2-3B1970F94DB2} +// {92EDD580-062E-4471-ADEB-68329B0EC2E4} #define NS_IEVENTSTATEMANAGER_IID \ -{ 0xc224a806, 0xa99f, 0x4056, \ - { 0x85, 0xc2, 0x3b, 0x19, 0x70, 0xf9, 0x4d, 0xb2 } } +{ 0x92edd580, 0x062e, 0x4471, \ + { 0xad, 0xeb, 0x68, 0x32, 0x9b, 0x0e, 0xc2, 0xe4 } } #define NS_EVENT_NEEDS_FRAME(event) (!NS_IS_ACTIVATION_EVENT(event)) @@ -212,9 +212,9 @@ NS_DEFINE_STATIC_IID_ACCESSOR(nsIEventStateManager, NS_IEVENTSTATEMANAGER_IID) // Handler for the content has crashed #define NS_EVENT_STATE_HANDLER_CRASHED \ - 0x08000000 + (1 << 28) // content has focus and should show a ring -#define NS_EVENT_STATE_FOCUSRING 0x10000000 +#define NS_EVENT_STATE_FOCUSRING (1 << 29) #endif // nsIEventStateManager_h__