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

Side by Side Diff: Source/core/paint/DeprecatedPaintLayerScrollableArea.cpp

Issue 1148813007: Move EventHandler from core/page/ to core/input (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unnecessary file Created 5 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/page/TouchDisambiguation.cpp ('k') | Source/core/testing/Internals.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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 #include "core/css/PseudoStyleRequest.h" 47 #include "core/css/PseudoStyleRequest.h"
48 #include "core/dom/AXObjectCache.h" 48 #include "core/dom/AXObjectCache.h"
49 #include "core/dom/Node.h" 49 #include "core/dom/Node.h"
50 #include "core/dom/shadow/ShadowRoot.h" 50 #include "core/dom/shadow/ShadowRoot.h"
51 #include "core/editing/FrameSelection.h" 51 #include "core/editing/FrameSelection.h"
52 #include "core/frame/FrameView.h" 52 #include "core/frame/FrameView.h"
53 #include "core/frame/LocalFrame.h" 53 #include "core/frame/LocalFrame.h"
54 #include "core/frame/Settings.h" 54 #include "core/frame/Settings.h"
55 #include "core/html/HTMLFrameOwnerElement.h" 55 #include "core/html/HTMLFrameOwnerElement.h"
56 #include "core/input/EventHandler.h"
56 #include "core/layout/LayoutGeometryMap.h" 57 #include "core/layout/LayoutGeometryMap.h"
57 #include "core/layout/LayoutScrollbar.h" 58 #include "core/layout/LayoutScrollbar.h"
58 #include "core/layout/LayoutScrollbarPart.h" 59 #include "core/layout/LayoutScrollbarPart.h"
59 #include "core/layout/LayoutTheme.h" 60 #include "core/layout/LayoutTheme.h"
60 #include "core/layout/LayoutView.h" 61 #include "core/layout/LayoutView.h"
61 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" 62 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h"
62 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" 63 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
63 #include "core/page/ChromeClient.h" 64 #include "core/page/ChromeClient.h"
64 #include "core/page/EventHandler.h"
65 #include "core/page/FocusController.h" 65 #include "core/page/FocusController.h"
66 #include "core/page/Page.h" 66 #include "core/page/Page.h"
67 #include "core/page/scrolling/ScrollingCoordinator.h" 67 #include "core/page/scrolling/ScrollingCoordinator.h"
68 #include "core/paint/DeprecatedPaintLayerFragment.h" 68 #include "core/paint/DeprecatedPaintLayerFragment.h"
69 #include "platform/PlatformGestureEvent.h" 69 #include "platform/PlatformGestureEvent.h"
70 #include "platform/PlatformMouseEvent.h" 70 #include "platform/PlatformMouseEvent.h"
71 #include "platform/graphics/GraphicsContextStateSaver.h" 71 #include "platform/graphics/GraphicsContextStateSaver.h"
72 #include "platform/graphics/GraphicsLayer.h" 72 #include "platform/graphics/GraphicsLayer.h"
73 #include "platform/graphics/paint/DrawingRecorder.h" 73 #include "platform/graphics/paint/DrawingRecorder.h"
74 #include "platform/scroll/ScrollAnimator.h" 74 #include "platform/scroll/ScrollAnimator.h"
(...skipping 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 void DeprecatedPaintLayerScrollableArea::setTopmostScrollChild(DeprecatedPaintLa yer* scrollChild) 1398 void DeprecatedPaintLayerScrollableArea::setTopmostScrollChild(DeprecatedPaintLa yer* scrollChild)
1399 { 1399 {
1400 // We only want to track the topmost scroll child for scrollable areas with 1400 // We only want to track the topmost scroll child for scrollable areas with
1401 // overlay scrollbars. 1401 // overlay scrollbars.
1402 if (!hasOverlayScrollbars()) 1402 if (!hasOverlayScrollbars())
1403 return; 1403 return;
1404 m_nextTopmostScrollChild = scrollChild; 1404 m_nextTopmostScrollChild = scrollChild;
1405 } 1405 }
1406 1406
1407 } // namespace blink 1407 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/page/TouchDisambiguation.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698