michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /* michael@0: * This file defines constants to be used in the "subtype" field of michael@0: * NSApplicationDefined type NSEvents. michael@0: */ michael@0: michael@0: #ifndef WIDGET_COCOA_CUSTOMCOCOAEVENTS_H_ michael@0: #define WIDGET_COCOA_CUSTOMCOCOAEVENTS_H_ michael@0: michael@0: // Empty event, just used for prodding the event loop into responding. michael@0: const short kEventSubtypeNone = 0; michael@0: // Tracer event, used for timing the event loop responsiveness. michael@0: const short kEventSubtypeTrace = 1; michael@0: michael@0: #endif /* WIDGET_COCOA_CUSTOMCOCOAEVENTS_H_ */