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

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

Issue 14398007: Remove USE(3D_GRAPHICS) as it is always turned on. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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/rendering/FilterEffectRenderer.cpp ('k') | Source/core/rendering/RenderView.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) 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
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"
83 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h"
84 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
85 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h"
86 #include "core/platform/graphics/filters/custom/ValidatedCustomFilterOperation.h "
83 #include "core/platform/graphics/filters/FEColorMatrix.h" 87 #include "core/platform/graphics/filters/FEColorMatrix.h"
84 #include "core/platform/graphics/filters/FEMerge.h" 88 #include "core/platform/graphics/filters/FEMerge.h"
85 #include "core/platform/graphics/filters/SourceGraphic.h" 89 #include "core/platform/graphics/filters/SourceGraphic.h"
86 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" 90 #include "core/platform/graphics/transforms/ScaleTransformOperation.h"
87 #include "core/platform/graphics/transforms/TransformationMatrix.h" 91 #include "core/platform/graphics/transforms/TransformationMatrix.h"
88 #include "core/platform/graphics/transforms/TranslateTransformOperation.h" 92 #include "core/platform/graphics/transforms/TranslateTransformOperation.h"
89 #include "core/platform/text/TextStream.h" 93 #include "core/platform/text/TextStream.h"
90 #include "core/rendering/ColumnInfo.h" 94 #include "core/rendering/ColumnInfo.h"
91 #include "core/rendering/FilterEffectRenderer.h" 95 #include "core/rendering/FilterEffectRenderer.h"
92 #include "core/rendering/HitTestRequest.h" 96 #include "core/rendering/HitTestRequest.h"
(...skipping 17 matching lines...) Expand all
110 #include "core/rendering/svg/RenderSVGResourceClipper.h" 114 #include "core/rendering/svg/RenderSVGResourceClipper.h"
111 #include <wtf/MemoryInstrumentationVector.h> 115 #include <wtf/MemoryInstrumentationVector.h>
112 #include <wtf/StdLibExtras.h> 116 #include <wtf/StdLibExtras.h>
113 #include <wtf/text/CString.h> 117 #include <wtf/text/CString.h>
114 #include <wtf/UnusedParam.h> 118 #include <wtf/UnusedParam.h>
115 119
116 #if ENABLE(SVG) 120 #if ENABLE(SVG)
117 #include "SVGNames.h" 121 #include "SVGNames.h"
118 #endif 122 #endif
119 123
120 #if USE(3D_GRAPHICS)
121 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h"
122 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
123 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h"
124 #include "core/platform/graphics/filters/custom/ValidatedCustomFilterOperation.h "
125 #endif
126
127 #define MIN_INTERSECT_FOR_REVEAL 32 124 #define MIN_INTERSECT_FOR_REVEAL 32
128 125
129 using namespace std; 126 using namespace std;
130 127
131 namespace WebCore { 128 namespace WebCore {
132 129
133 using namespace HTMLNames; 130 using namespace HTMLNames;
134 131
135 const int MinimumWidthWhileResizing = 100; 132 const int MinimumWidthWhileResizing = 100;
136 const int MinimumHeightWhileResizing = 40; 133 const int MinimumHeightWhileResizing = 40;
(...skipping 6425 matching lines...) Expand 10 before | Expand all | Expand 10 after
6562 } 6559 }
6563 } 6560 }
6564 6561
6565 void showLayerTree(const WebCore::RenderObject* renderer) 6562 void showLayerTree(const WebCore::RenderObject* renderer)
6566 { 6563 {
6567 if (!renderer) 6564 if (!renderer)
6568 return; 6565 return;
6569 showLayerTree(renderer->enclosingLayer()); 6566 showLayerTree(renderer->enclosingLayer());
6570 } 6567 }
6571 #endif 6568 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/FilterEffectRenderer.cpp ('k') | Source/core/rendering/RenderView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698