| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef EventPath_h | 27 #ifndef EventPath_h |
| 28 #define EventPath_h | 28 #define EventPath_h |
| 29 | 29 |
| 30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
| 31 #include "core/events/NodeEventContext.h" | 31 #include "core/events/NodeEventContext.h" |
| 32 #include "core/events/TreeScopeEventContext.h" | 32 #include "core/events/TreeScopeEventContext.h" |
| 33 #include "core/events/WindowEventContext.h" | 33 #include "core/events/WindowEventContext.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "wtf/HashMap.h" | 35 #include "platform/wtf/HashMap.h" |
| 36 #include "wtf/Vector.h" | 36 #include "platform/wtf/Vector.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class Event; | 40 class Event; |
| 41 class EventTarget; | 41 class EventTarget; |
| 42 class Node; | 42 class Node; |
| 43 class TouchEvent; | 43 class TouchEvent; |
| 44 class TouchList; | 44 class TouchList; |
| 45 class TreeScope; | 45 class TreeScope; |
| 46 | 46 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 HeapVector<NodeEventContext> node_event_contexts_; | 132 HeapVector<NodeEventContext> node_event_contexts_; |
| 133 Member<Node> node_; | 133 Member<Node> node_; |
| 134 Member<Event> event_; | 134 Member<Event> event_; |
| 135 HeapVector<Member<TreeScopeEventContext>> tree_scope_event_contexts_; | 135 HeapVector<Member<TreeScopeEventContext>> tree_scope_event_contexts_; |
| 136 Member<WindowEventContext> window_event_context_; | 136 Member<WindowEventContext> window_event_context_; |
| 137 }; | 137 }; |
| 138 | 138 |
| 139 } // namespace blink | 139 } // namespace blink |
| 140 | 140 |
| 141 #endif | 141 #endif |
| OLD | NEW |