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

Side by Side Diff: Source/core/dom/Document.cpp

Issue 338543003: Gesture event hit test refactoring and reduction (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix release build Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/page/EventHandler.h » ('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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 #include "core/inspector/ScriptCallStack.h" 153 #include "core/inspector/ScriptCallStack.h"
154 #include "core/loader/CookieJar.h" 154 #include "core/loader/CookieJar.h"
155 #include "core/loader/DocumentLoader.h" 155 #include "core/loader/DocumentLoader.h"
156 #include "core/loader/FrameLoader.h" 156 #include "core/loader/FrameLoader.h"
157 #include "core/loader/FrameLoaderClient.h" 157 #include "core/loader/FrameLoaderClient.h"
158 #include "core/loader/ImageLoader.h" 158 #include "core/loader/ImageLoader.h"
159 #include "core/loader/appcache/ApplicationCacheHost.h" 159 #include "core/loader/appcache/ApplicationCacheHost.h"
160 #include "core/page/Chrome.h" 160 #include "core/page/Chrome.h"
161 #include "core/page/ChromeClient.h" 161 #include "core/page/ChromeClient.h"
162 #include "core/page/EventHandler.h" 162 #include "core/page/EventHandler.h"
163 #include "core/page/EventWithHitTestResults.h"
163 #include "core/page/FocusController.h" 164 #include "core/page/FocusController.h"
164 #include "core/page/FrameTree.h" 165 #include "core/page/FrameTree.h"
165 #include "core/page/MouseEventWithHitTestResults.h"
166 #include "core/page/Page.h" 166 #include "core/page/Page.h"
167 #include "core/page/PointerLockController.h" 167 #include "core/page/PointerLockController.h"
168 #include "core/page/scrolling/ScrollingCoordinator.h" 168 #include "core/page/scrolling/ScrollingCoordinator.h"
169 #include "core/rendering/FastTextAutosizer.h" 169 #include "core/rendering/FastTextAutosizer.h"
170 #include "core/rendering/HitTestResult.h" 170 #include "core/rendering/HitTestResult.h"
171 #include "core/rendering/RenderView.h" 171 #include "core/rendering/RenderView.h"
172 #include "core/rendering/TextAutosizer.h" 172 #include "core/rendering/TextAutosizer.h"
173 #include "core/rendering/compositing/RenderLayerCompositor.h" 173 #include "core/rendering/compositing/RenderLayerCompositor.h"
174 #include "core/svg/SVGDocumentExtensions.h" 174 #include "core/svg/SVGDocumentExtensions.h"
175 #include "core/svg/SVGFontFaceElement.h" 175 #include "core/svg/SVGFontFaceElement.h"
(...skipping 5660 matching lines...) Expand 10 before | Expand all | Expand 10 after
5836 visitor->trace(m_compositorPendingAnimations); 5836 visitor->trace(m_compositorPendingAnimations);
5837 visitor->trace(m_contextDocument); 5837 visitor->trace(m_contextDocument);
5838 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); 5838 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this);
5839 DocumentSupplementable::trace(visitor); 5839 DocumentSupplementable::trace(visitor);
5840 TreeScope::trace(visitor); 5840 TreeScope::trace(visitor);
5841 ContainerNode::trace(visitor); 5841 ContainerNode::trace(visitor);
5842 ExecutionContext::trace(visitor); 5842 ExecutionContext::trace(visitor);
5843 } 5843 }
5844 5844
5845 } // namespace WebCore 5845 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698