| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 BLINK_EXPORT bool isUIEvent() const; | 78 BLINK_EXPORT bool isUIEvent() const; |
| 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 isWheelEvent() const; | 86 BLINK_EXPORT bool isWheelEvent() const; |
| 87 BLINK_EXPORT bool isBeforeTextInsertedEvent() const; | 87 BLINK_EXPORT bool isBeforeTextInsertedEvent() const; |
| 88 BLINK_EXPORT bool isOverflowEvent() const; | |
| 89 BLINK_EXPORT bool isPageTransitionEvent() const; | 88 BLINK_EXPORT bool isPageTransitionEvent() const; |
| 90 BLINK_EXPORT bool isPopStateEvent() const; | 89 BLINK_EXPORT bool isPopStateEvent() const; |
| 91 BLINK_EXPORT bool isProgressEvent() const; | 90 BLINK_EXPORT bool isProgressEvent() const; |
| 92 | 91 |
| 93 #if BLINK_IMPLEMENTATION | 92 #if BLINK_IMPLEMENTATION |
| 94 WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>&); | 93 WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>&); |
| 95 operator PassRefPtrWillBeRawPtr<Event>() const; | 94 operator PassRefPtrWillBeRawPtr<Event>() const; |
| 96 #endif | 95 #endif |
| 97 | 96 |
| 98 template<typename T> T to() | 97 template<typename T> T to() |
| (...skipping 24 matching lines...) Expand all Loading... |
| 123 return static_cast<const T*>(m_private.get()); | 122 return static_cast<const T*>(m_private.get()); |
| 124 } | 123 } |
| 125 #endif | 124 #endif |
| 126 | 125 |
| 127 WebPrivatePtr<Event> m_private; | 126 WebPrivatePtr<Event> m_private; |
| 128 }; | 127 }; |
| 129 | 128 |
| 130 } // namespace blink | 129 } // namespace blink |
| 131 | 130 |
| 132 #endif | 131 #endif |
| OLD | NEW |