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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "core/css/PseudoStyleRequest.h" 52 #include "core/css/PseudoStyleRequest.h"
53 #include "core/dom/Document.h" 53 #include "core/dom/Document.h"
54 #include "core/dom/shadow/ShadowRoot.h" 54 #include "core/dom/shadow/ShadowRoot.h"
55 #include "core/html/HTMLFrameElement.h" 55 #include "core/html/HTMLFrameElement.h"
56 #include "core/frame/Frame.h" 56 #include "core/frame/Frame.h"
57 #include "core/frame/FrameView.h" 57 #include "core/frame/FrameView.h"
58 #include "core/page/Page.h" 58 #include "core/page/Page.h"
59 #include "core/page/Settings.h" 59 #include "core/page/Settings.h"
60 #include "core/frame/animation/AnimationController.h" 60 #include "core/frame/animation/AnimationController.h"
61 #include "core/page/scrolling/ScrollingCoordinator.h" 61 #include "core/page/scrolling/ScrollingCoordinator.h"
62 #include "core/platform/graphics/GraphicsContextStateSaver.h"
63 #include "core/platform/graphics/filters/ReferenceFilter.h"
64 #include "core/platform/graphics/filters/SourceGraphic.h"
65 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" 62 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h"
66 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 63 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
67 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h" 64 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h"
68 #include "core/platform/graphics/filters/custom/ValidatedCustomFilterOperation.h " 65 #include "core/platform/graphics/filters/custom/ValidatedCustomFilterOperation.h "
69 #include "core/rendering/ColumnInfo.h" 66 #include "core/rendering/ColumnInfo.h"
70 #include "core/rendering/CompositedLayerMapping.h" 67 #include "core/rendering/CompositedLayerMapping.h"
71 #include "core/rendering/FilterEffectRenderer.h" 68 #include "core/rendering/FilterEffectRenderer.h"
72 #include "core/rendering/HitTestRequest.h" 69 #include "core/rendering/HitTestRequest.h"
73 #include "core/rendering/HitTestResult.h" 70 #include "core/rendering/HitTestResult.h"
74 #include "core/rendering/HitTestingTransformState.h" 71 #include "core/rendering/HitTestingTransformState.h"
75 #include "core/rendering/RenderFlowThread.h" 72 #include "core/rendering/RenderFlowThread.h"
76 #include "core/rendering/RenderGeometryMap.h" 73 #include "core/rendering/RenderGeometryMap.h"
77 #include "core/rendering/RenderInline.h" 74 #include "core/rendering/RenderInline.h"
78 #include "core/rendering/RenderLayerCompositor.h" 75 #include "core/rendering/RenderLayerCompositor.h"
79 #include "core/rendering/RenderReplica.h" 76 #include "core/rendering/RenderReplica.h"
80 #include "core/rendering/RenderScrollbar.h" 77 #include "core/rendering/RenderScrollbar.h"
81 #include "core/rendering/RenderScrollbarPart.h" 78 #include "core/rendering/RenderScrollbarPart.h"
82 #include "core/rendering/RenderTreeAsText.h" 79 #include "core/rendering/RenderTreeAsText.h"
83 #include "core/rendering/RenderView.h" 80 #include "core/rendering/RenderView.h"
84 #include "core/rendering/svg/ReferenceFilterBuilder.h" 81 #include "core/rendering/svg/ReferenceFilterBuilder.h"
85 #include "core/rendering/svg/RenderSVGResourceClipper.h" 82 #include "core/rendering/svg/RenderSVGResourceClipper.h"
86 #include "platform/LengthFunctions.h" 83 #include "platform/LengthFunctions.h"
87 #include "platform/Partitions.h" 84 #include "platform/Partitions.h"
88 #include "platform/TraceEvent.h" 85 #include "platform/TraceEvent.h"
89 #include "platform/geometry/FloatPoint3D.h" 86 #include "platform/geometry/FloatPoint3D.h"
90 #include "platform/geometry/FloatRect.h" 87 #include "platform/geometry/FloatRect.h"
88 #include "platform/graphics/GraphicsContextStateSaver.h"
89 #include "platform/graphics/filters/ReferenceFilter.h"
90 #include "platform/graphics/filters/SourceGraphic.h"
91 #include "platform/transforms/ScaleTransformOperation.h" 91 #include "platform/transforms/ScaleTransformOperation.h"
92 #include "platform/transforms/TransformationMatrix.h" 92 #include "platform/transforms/TransformationMatrix.h"
93 #include "platform/transforms/TranslateTransformOperation.h" 93 #include "platform/transforms/TranslateTransformOperation.h"
94 #include "public/platform/Platform.h" 94 #include "public/platform/Platform.h"
95 #include "wtf/StdLibExtras.h" 95 #include "wtf/StdLibExtras.h"
96 #include "wtf/UnusedParam.h" 96 #include "wtf/UnusedParam.h"
97 #include "wtf/text/CString.h" 97 #include "wtf/text/CString.h"
98 98
99 using namespace std; 99 using namespace std;
100 100
(...skipping 4069 matching lines...) Expand 10 before | Expand all | Expand 10 after
4170 } 4170 }
4171 } 4171 }
4172 4172
4173 void showLayerTree(const WebCore::RenderObject* renderer) 4173 void showLayerTree(const WebCore::RenderObject* renderer)
4174 { 4174 {
4175 if (!renderer) 4175 if (!renderer)
4176 return; 4176 return;
4177 showLayerTree(renderer->enclosingLayer()); 4177 showLayerTree(renderer->enclosingLayer());
4178 } 4178 }
4179 #endif 4179 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderInputSpeech.cpp ('k') | Source/core/rendering/RenderLayerCompositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698