Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: Source/core/dom/EventDispatcher.h

Issue 17480002: Remove unused includes from core/accessibility, core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased ; update <wtf/Foo.h> to "wtf/Foo.h" in changed files Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/dom/Event.h ('k') | Source/core/dom/EventDispatcher.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2011 Google Inc. All rights reserved. 8 * Copyright (C) 2011 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 10 matching lines...) Expand all
21 * along with this library; see the file COPYING.LIB. If not, write to 21 * along with this library; see the file COPYING.LIB. If not, write to
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA. 23 * Boston, MA 02110-1301, USA.
24 */ 24 */
25 25
26 #ifndef EventDispatcher_h 26 #ifndef EventDispatcher_h
27 #define EventDispatcher_h 27 #define EventDispatcher_h
28 28
29 #include "core/dom/EventContext.h" 29 #include "core/dom/EventContext.h"
30 #include "core/dom/SimulatedClickOptions.h" 30 #include "core/dom/SimulatedClickOptions.h"
31 #include <wtf/Forward.h> 31 #include "wtf/Forward.h"
32 #include <wtf/HashMap.h> 32 #include "wtf/PassRefPtr.h"
33 #include <wtf/PassRefPtr.h>
34 #include <wtf/Vector.h>
35 33
36 namespace WebCore { 34 namespace WebCore {
37 35
38 class Event; 36 class Event;
39 class EventDispatchMediator; 37 class EventDispatchMediator;
40 class EventTarget; 38 class EventTarget;
41 class FrameView; 39 class FrameView;
42 class Node; 40 class Node;
43 class PlatformKeyboardEvent; 41 class PlatformKeyboardEvent;
44 class PlatformMouseEvent; 42 class PlatformMouseEvent;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 RefPtr<Event> m_event; 74 RefPtr<Event> m_event;
77 RefPtr<FrameView> m_view; 75 RefPtr<FrameView> m_view;
78 #ifndef NDEBUG 76 #ifndef NDEBUG
79 bool m_eventDispatched; 77 bool m_eventDispatched;
80 #endif 78 #endif
81 }; 79 };
82 80
83 } 81 }
84 82
85 #endif 83 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Event.h ('k') | Source/core/dom/EventDispatcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698