| 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 23 matching lines...) Expand all Loading... |
| 34 #include "wtf/PassRefPtr.h" | 34 #include "wtf/PassRefPtr.h" |
| 35 #include "wtf/RefPtr.h" | 35 #include "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 class NodeEventContext; | |
| 45 class WindowEventContext; | |
| 46 | 44 |
| 47 class EventDispatchHandlingState | 45 class EventDispatchHandlingState |
| 48 : public GarbageCollected<EventDispatchHandlingState> { | 46 : public GarbageCollected<EventDispatchHandlingState> { |
| 49 public: | 47 public: |
| 50 DEFINE_INLINE_VIRTUAL_TRACE() {} | 48 DEFINE_INLINE_VIRTUAL_TRACE() {} |
| 51 }; | 49 }; |
| 52 | 50 |
| 53 enum EventDispatchContinuation { ContinueDispatching, DoneDispatching }; | 51 enum EventDispatchContinuation { ContinueDispatching, DoneDispatching }; |
| 54 | 52 |
| 55 class EventDispatcher { | 53 class EventDispatcher { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 82 Member<Event> m_event; | 80 Member<Event> m_event; |
| 83 Member<FrameView> m_view; | 81 Member<FrameView> m_view; |
| 84 #if DCHECK_IS_ON() | 82 #if DCHECK_IS_ON() |
| 85 bool m_eventDispatched = false; | 83 bool m_eventDispatched = false; |
| 86 #endif | 84 #endif |
| 87 }; | 85 }; |
| 88 | 86 |
| 89 } // namespace blink | 87 } // namespace blink |
| 90 | 88 |
| 91 #endif | 89 #endif |
| OLD | NEW |