OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. | 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 #ifndef GlobalEventHandlers_h | 30 #ifndef GlobalEventHandlers_h |
31 #define GlobalEventHandlers_h | 31 #define GlobalEventHandlers_h |
32 | 32 |
33 #include "core/events/EventTarget.h" | 33 #include "core/events/EventTarget.h" |
34 | 34 |
35 namespace blink { | 35 namespace blink { |
36 | 36 |
37 namespace GlobalEventHandlers { | 37 namespace GlobalEventHandlers { |
38 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(abort); | 38 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(abort); |
39 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(autocomplete); | |
40 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(autocompleteerror); | |
41 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(blur); | 39 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(blur); |
42 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(cancel); | 40 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(cancel); |
43 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(canplay); | 41 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(canplay); |
44 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(canplaythrough); | 42 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(canplaythrough); |
45 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(change); | 43 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(change); |
46 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(click); | 44 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(click); |
47 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(close); | 45 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(close); |
48 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(contextmenu); | 46 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(contextmenu); |
49 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(cuechange); | 47 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(cuechange); |
50 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(dblclick); | 48 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(dblclick); |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(touchend); | 104 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(touchend); |
107 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(touchmove); | 105 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(touchmove); |
108 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(touchstart); | 106 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(touchstart); |
109 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(volumechange); | 107 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(volumechange); |
110 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(waiting); | 108 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(waiting); |
111 } | 109 } |
112 | 110 |
113 } // namespace | 111 } // namespace |
114 | 112 |
115 #endif | 113 #endif |
OLD | NEW |