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

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

Issue 20253002: core/rendering: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixes Created 7 years, 4 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/rendering/RenderLayer.h ('k') | Source/core/rendering/RenderLayerBacking.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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 #include "core/rendering/RenderInline.h" 96 #include "core/rendering/RenderInline.h"
97 #include "core/rendering/RenderLayerBacking.h" 97 #include "core/rendering/RenderLayerBacking.h"
98 #include "core/rendering/RenderLayerCompositor.h" 98 #include "core/rendering/RenderLayerCompositor.h"
99 #include "core/rendering/RenderReplica.h" 99 #include "core/rendering/RenderReplica.h"
100 #include "core/rendering/RenderScrollbar.h" 100 #include "core/rendering/RenderScrollbar.h"
101 #include "core/rendering/RenderScrollbarPart.h" 101 #include "core/rendering/RenderScrollbarPart.h"
102 #include "core/rendering/RenderTreeAsText.h" 102 #include "core/rendering/RenderTreeAsText.h"
103 #include "core/rendering/RenderView.h" 103 #include "core/rendering/RenderView.h"
104 #include "core/rendering/svg/ReferenceFilterBuilder.h" 104 #include "core/rendering/svg/ReferenceFilterBuilder.h"
105 #include "core/rendering/svg/RenderSVGResourceClipper.h" 105 #include "core/rendering/svg/RenderSVGResourceClipper.h"
106 #include <wtf/StdLibExtras.h> 106 #include "wtf/StdLibExtras.h"
107 #include <wtf/text/CString.h> 107 #include "wtf/UnusedParam.h"
108 #include <wtf/UnusedParam.h> 108 #include "wtf/text/CString.h"
109 109
110 #define MIN_INTERSECT_FOR_REVEAL 32 110 #define MIN_INTERSECT_FOR_REVEAL 32
111 111
112 using namespace std; 112 using namespace std;
113 113
114 namespace WebCore { 114 namespace WebCore {
115 115
116 using namespace HTMLNames; 116 using namespace HTMLNames;
117 117
118 const int MinimumWidthWhileResizing = 100; 118 const int MinimumWidthWhileResizing = 100;
(...skipping 6261 matching lines...) Expand 10 before | Expand all | Expand 10 after
6380 } 6380 }
6381 } 6381 }
6382 6382
6383 void showLayerTree(const WebCore::RenderObject* renderer) 6383 void showLayerTree(const WebCore::RenderObject* renderer)
6384 { 6384 {
6385 if (!renderer) 6385 if (!renderer)
6386 return; 6386 return;
6387 showLayerTree(renderer->enclosingLayer()); 6387 showLayerTree(renderer->enclosingLayer());
6388 } 6388 }
6389 #endif 6389 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayer.h ('k') | Source/core/rendering/RenderLayerBacking.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698