| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 BLINK_EXPORT bool cancelable() const; | 76 BLINK_EXPORT bool cancelable() const; |
| 77 | 77 |
| 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 isMessageEvent() const; | |
| 87 BLINK_EXPORT bool isWheelEvent() const; | 86 BLINK_EXPORT bool isWheelEvent() const; |
| 88 BLINK_EXPORT bool isBeforeTextInsertedEvent() const; | 87 BLINK_EXPORT bool isBeforeTextInsertedEvent() const; |
| 89 BLINK_EXPORT bool isOverflowEvent() const; | 88 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 | 92 |
| 94 #if BLINK_IMPLEMENTATION | 93 #if BLINK_IMPLEMENTATION |
| 95 WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>&); | 94 WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>&); |
| 96 operator PassRefPtrWillBeRawPtr<Event>() const; | 95 operator PassRefPtrWillBeRawPtr<Event>() const; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 124 return static_cast<const T*>(m_private.get()); | 123 return static_cast<const T*>(m_private.get()); |
| 125 } | 124 } |
| 126 #endif | 125 #endif |
| 127 | 126 |
| 128 WebPrivatePtr<Event> m_private; | 127 WebPrivatePtr<Event> m_private; |
| 129 }; | 128 }; |
| 130 | 129 |
| 131 } // namespace blink | 130 } // namespace blink |
| 132 | 131 |
| 133 #endif | 132 #endif |
| OLD | NEW |