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

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

Issue 1230643006: Update inclusion of GraphicsContextStateSaver.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/layout/line/InlineFlowBox.cpp ('k') | Source/core/paint/FieldsetPainter.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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "core/layout/LayoutView.h" 61 #include "core/layout/LayoutView.h"
62 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" 62 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h"
63 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" 63 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
64 #include "core/page/ChromeClient.h" 64 #include "core/page/ChromeClient.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"
72 #include "platform/graphics/GraphicsLayer.h" 71 #include "platform/graphics/GraphicsLayer.h"
73 #include "platform/graphics/paint/DrawingRecorder.h" 72 #include "platform/graphics/paint/DrawingRecorder.h"
74 #include "platform/scroll/ScrollAnimator.h" 73 #include "platform/scroll/ScrollAnimator.h"
75 #include "platform/scroll/ScrollbarTheme.h" 74 #include "platform/scroll/ScrollbarTheme.h"
76 #include "public/platform/Platform.h" 75 #include "public/platform/Platform.h"
77 76
78 namespace blink { 77 namespace blink {
79 78
80 const int ResizerControlExpandRatioForTouch = 2; 79 const int ResizerControlExpandRatioForTouch = 2;
81 80
(...skipping 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 void DeprecatedPaintLayerScrollableArea::setTopmostScrollChild(DeprecatedPaintLa yer* scrollChild) 1417 void DeprecatedPaintLayerScrollableArea::setTopmostScrollChild(DeprecatedPaintLa yer* scrollChild)
1419 { 1418 {
1420 // We only want to track the topmost scroll child for scrollable areas with 1419 // We only want to track the topmost scroll child for scrollable areas with
1421 // overlay scrollbars. 1420 // overlay scrollbars.
1422 if (!hasOverlayScrollbars()) 1421 if (!hasOverlayScrollbars())
1423 return; 1422 return;
1424 m_nextTopmostScrollChild = scrollChild; 1423 m_nextTopmostScrollChild = scrollChild;
1425 } 1424 }
1426 1425
1427 } // namespace blink 1426 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/line/InlineFlowBox.cpp ('k') | Source/core/paint/FieldsetPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698