| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2011 Google Inc. All rights reserved. | 10 * Copyright (C) 2011 Google Inc. All rights reserved. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 25 * Boston, MA 02110-1301, USA. | 25 * Boston, MA 02110-1301, USA. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef EventDispatcher_h | 28 #ifndef EventDispatcher_h |
| 29 #define EventDispatcher_h | 29 #define EventDispatcher_h |
| 30 | 30 |
| 31 #include "core/dom/SimulatedClickOptions.h" | 31 #include "core/dom/SimulatedClickOptions.h" |
| 32 #include "core/events/EventDispatchResult.h" | 32 #include "core/events/EventDispatchResult.h" |
| 33 #include "platform/heap/Handle.h" | 33 #include "platform/heap/Handle.h" |
| 34 #include "wtf/PassRefPtr.h" | 34 #include "platform/wtf/PassRefPtr.h" |
| 35 #include "wtf/RefPtr.h" | 35 #include "platform/wtf/RefPtr.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class Event; | 39 class Event; |
| 40 class EventDispatchMediator; | 40 class EventDispatchMediator; |
| 41 class FrameView; | 41 class FrameView; |
| 42 class EventDispatchHandlingState; | 42 class EventDispatchHandlingState; |
| 43 class Node; | 43 class Node; |
| 44 | 44 |
| 45 class EventDispatchHandlingState | 45 class EventDispatchHandlingState |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 Member<Event> event_; | 80 Member<Event> event_; |
| 81 Member<FrameView> view_; | 81 Member<FrameView> view_; |
| 82 #if DCHECK_IS_ON() | 82 #if DCHECK_IS_ON() |
| 83 bool event_dispatched_ = false; | 83 bool event_dispatched_ = false; |
| 84 #endif | 84 #endif |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace blink | 87 } // namespace blink |
| 88 | 88 |
| 89 #endif | 89 #endif |
| OLD | NEW |