OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 BLINK_EXPORT bool isMouseEvent() const; | 79 BLINK_EXPORT bool isMouseEvent() const; |
80 BLINK_EXPORT bool isMutationEvent() const; | 80 BLINK_EXPORT bool isMutationEvent() const; |
81 BLINK_EXPORT bool isKeyboardEvent() const; | 81 BLINK_EXPORT bool isKeyboardEvent() const; |
82 BLINK_EXPORT bool isTextEvent() const; | 82 BLINK_EXPORT bool isTextEvent() const; |
83 BLINK_EXPORT bool isCompositionEvent() const; | 83 BLINK_EXPORT bool isCompositionEvent() const; |
84 BLINK_EXPORT bool isDragEvent() const; | 84 BLINK_EXPORT bool isDragEvent() const; |
85 BLINK_EXPORT bool isClipboardEvent() const; | 85 BLINK_EXPORT bool isClipboardEvent() const; |
86 BLINK_EXPORT bool isMessageEvent() const; | 86 BLINK_EXPORT bool isMessageEvent() const; |
87 BLINK_EXPORT bool isWheelEvent() const; | 87 BLINK_EXPORT bool isWheelEvent() const; |
88 BLINK_EXPORT bool isBeforeTextInsertedEvent() const; | 88 BLINK_EXPORT bool isBeforeTextInsertedEvent() const; |
89 BLINK_EXPORT bool isOverflowEvent() const; | |
90 BLINK_EXPORT bool isPageTransitionEvent() const; | 89 BLINK_EXPORT bool isPageTransitionEvent() const; |
91 BLINK_EXPORT bool isPopStateEvent() const; | 90 BLINK_EXPORT bool isPopStateEvent() const; |
92 BLINK_EXPORT bool isProgressEvent() const; | 91 BLINK_EXPORT bool isProgressEvent() const; |
93 BLINK_EXPORT bool isXMLHttpRequestProgressEvent() const; | 92 BLINK_EXPORT bool isXMLHttpRequestProgressEvent() const; |
94 | 93 |
95 #if BLINK_IMPLEMENTATION | 94 #if BLINK_IMPLEMENTATION |
96 WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>&); | 95 WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>&); |
97 operator PassRefPtrWillBeRawPtr<Event>() const; | 96 operator PassRefPtrWillBeRawPtr<Event>() const; |
98 #endif | 97 #endif |
99 | 98 |
(...skipping 25 matching lines...) Expand all Loading... |
125 return static_cast<const T*>(m_private.get()); | 124 return static_cast<const T*>(m_private.get()); |
126 } | 125 } |
127 #endif | 126 #endif |
128 | 127 |
129 WebPrivatePtr<Event> m_private; | 128 WebPrivatePtr<Event> m_private; |
130 }; | 129 }; |
131 | 130 |
132 } // namespace blink | 131 } // namespace blink |
133 | 132 |
134 #endif | 133 #endif |
OLD | NEW |