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

Side by Side Diff: Source/core/rendering/RenderLayer.cpp

Issue 14471017: Absolutify paths to page/animation, page/scrolling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
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 26 matching lines...) Expand all
37 * version of this file under the LGPL, indicate your decision by 37 * version of this file under the LGPL, indicate your decision by
38 * deletingthe provisions above and replace them with the notice and 38 * deletingthe provisions above and replace them with the notice and
39 * other provisions required by the MPL or the GPL, as the case may be. 39 * other provisions required by the MPL or the GPL, as the case may be.
40 * If you do not delete the provisions above, a recipient may use your 40 * If you do not delete the provisions above, a recipient may use your
41 * version of this file under any of the LGPL, the MPL or the GPL. 41 * version of this file under any of the LGPL, the MPL or the GPL.
42 */ 42 */
43 43
44 #include "config.h" 44 #include "config.h"
45 #include "core/rendering/RenderLayer.h" 45 #include "core/rendering/RenderLayer.h"
46 46
47 #include "AnimationController.h"
48 #include "CSSPropertyNames.h" 47 #include "CSSPropertyNames.h"
49 #include "Chrome.h" 48 #include "Chrome.h"
50 #include "Document.h" 49 #include "Document.h"
51 #include "DocumentEventQueue.h" 50 #include "DocumentEventQueue.h"
52 #include "EventHandler.h" 51 #include "EventHandler.h"
53 #include "FocusController.h" 52 #include "FocusController.h"
54 #include "Frame.h" 53 #include "Frame.h"
55 #include "FrameTree.h" 54 #include "FrameTree.h"
56 #include "FrameView.h" 55 #include "FrameView.h"
57 #include "HTMLFrameElement.h" 56 #include "HTMLFrameElement.h"
58 #include "HTMLFrameOwnerElement.h" 57 #include "HTMLFrameOwnerElement.h"
59 #include "HTMLNames.h" 58 #include "HTMLNames.h"
60 #include "OverflowEvent.h" 59 #include "OverflowEvent.h"
61 #include "Page.h" 60 #include "Page.h"
62 #include "ScrollingCoordinator.h"
63 #include "Settings.h" 61 #include "Settings.h"
64 #include "ShadowRoot.h" 62 #include "ShadowRoot.h"
65 #include "StaticHashSetNodeList.h" 63 #include "StaticHashSetNodeList.h"
66 #include "StylePropertySet.h" 64 #include "StylePropertySet.h"
67 #include "StyleResolver.h" 65 #include "StyleResolver.h"
68 #include "UseCounter.h" 66 #include "UseCounter.h"
69 #include "WebCoreMemoryInstrumentation.h" 67 #include "WebCoreMemoryInstrumentation.h"
70 #include "core/editing/FrameSelection.h" 68 #include "core/editing/FrameSelection.h"
71 #include "core/loader/FrameLoader.h" 69 #include "core/loader/FrameLoader.h"
72 #include "core/loader/FrameLoaderClient.h" 70 #include "core/loader/FrameLoaderClient.h"
71 #include "core/page/animation/AnimationController.h"
72 #include "core/page/scrolling/ScrollingCoordinator.h"
73 #include "core/platform/FloatConversion.h" 73 #include "core/platform/FloatConversion.h"
74 #include "core/platform/HistogramSupport.h" 74 #include "core/platform/HistogramSupport.h"
75 #include "core/platform/PlatformMouseEvent.h" 75 #include "core/platform/PlatformMouseEvent.h"
76 #include "core/platform/ScrollAnimator.h" 76 #include "core/platform/ScrollAnimator.h"
77 #include "core/platform/Scrollbar.h" 77 #include "core/platform/Scrollbar.h"
78 #include "core/platform/ScrollbarTheme.h" 78 #include "core/platform/ScrollbarTheme.h"
79 #include "core/platform/graphics/FloatPoint3D.h" 79 #include "core/platform/graphics/FloatPoint3D.h"
80 #include "core/platform/graphics/FloatRect.h" 80 #include "core/platform/graphics/FloatRect.h"
81 #include "core/platform/graphics/Gradient.h" 81 #include "core/platform/graphics/Gradient.h"
82 #include "core/platform/graphics/GraphicsContext.h" 82 #include "core/platform/graphics/GraphicsContext.h"
(...skipping 6474 matching lines...) Expand 10 before | Expand all | Expand 10 after
6557 } 6557 }
6558 } 6558 }
6559 6559
6560 void showLayerTree(const WebCore::RenderObject* renderer) 6560 void showLayerTree(const WebCore::RenderObject* renderer)
6561 { 6561 {
6562 if (!renderer) 6562 if (!renderer)
6563 return; 6563 return;
6564 showLayerTree(renderer->enclosingLayer()); 6564 showLayerTree(renderer->enclosingLayer());
6565 } 6565 }
6566 #endif 6566 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBoxModelObject.cpp ('k') | Source/core/rendering/RenderLayerBacking.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698