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

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

Issue 34273002: Remove UnusedParam.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/core/rendering/RenderImage.cpp ('k') | Source/core/rendering/RenderObject.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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 #include "platform/geometry/FloatPoint3D.h" 86 #include "platform/geometry/FloatPoint3D.h"
87 #include "platform/geometry/FloatRect.h" 87 #include "platform/geometry/FloatRect.h"
88 #include "platform/graphics/GraphicsContextStateSaver.h" 88 #include "platform/graphics/GraphicsContextStateSaver.h"
89 #include "platform/graphics/filters/ReferenceFilter.h" 89 #include "platform/graphics/filters/ReferenceFilter.h"
90 #include "platform/graphics/filters/SourceGraphic.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"
97 #include "wtf/text/CString.h" 96 #include "wtf/text/CString.h"
98 97
99 using namespace std; 98 using namespace std;
100 99
101 namespace WebCore { 100 namespace WebCore {
102 101
103 using namespace HTMLNames; 102 using namespace HTMLNames;
104 103
105 RenderLayer::RenderLayer(RenderLayerModelObject* renderer) 104 RenderLayer::RenderLayer(RenderLayerModelObject* renderer)
106 : m_hasSelfPaintingLayerDescendant(false) 105 : m_hasSelfPaintingLayerDescendant(false)
(...skipping 4063 matching lines...) Expand 10 before | Expand all | Expand 10 after
4170 } 4169 }
4171 } 4170 }
4172 4171
4173 void showLayerTree(const WebCore::RenderObject* renderer) 4172 void showLayerTree(const WebCore::RenderObject* renderer)
4174 { 4173 {
4175 if (!renderer) 4174 if (!renderer)
4176 return; 4175 return;
4177 showLayerTree(renderer->enclosingLayer()); 4176 showLayerTree(renderer->enclosingLayer());
4178 } 4177 }
4179 #endif 4178 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderImage.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698