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

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

Issue 208263004: Move TraceEvent.h from platform/ to wtf/ Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #include "core/rendering/RenderScrollbar.h" 72 #include "core/rendering/RenderScrollbar.h"
73 #include "core/rendering/RenderScrollbarPart.h" 73 #include "core/rendering/RenderScrollbarPart.h"
74 #include "core/rendering/RenderTreeAsText.h" 74 #include "core/rendering/RenderTreeAsText.h"
75 #include "core/rendering/RenderView.h" 75 #include "core/rendering/RenderView.h"
76 #include "core/rendering/compositing/CompositedLayerMapping.h" 76 #include "core/rendering/compositing/CompositedLayerMapping.h"
77 #include "core/rendering/compositing/RenderLayerCompositor.h" 77 #include "core/rendering/compositing/RenderLayerCompositor.h"
78 #include "core/rendering/svg/ReferenceFilterBuilder.h" 78 #include "core/rendering/svg/ReferenceFilterBuilder.h"
79 #include "core/rendering/svg/RenderSVGResourceClipper.h" 79 #include "core/rendering/svg/RenderSVGResourceClipper.h"
80 #include "platform/LengthFunctions.h" 80 #include "platform/LengthFunctions.h"
81 #include "platform/Partitions.h" 81 #include "platform/Partitions.h"
82 #include "platform/TraceEvent.h"
83 #include "platform/geometry/FloatPoint3D.h" 82 #include "platform/geometry/FloatPoint3D.h"
84 #include "platform/geometry/FloatRect.h" 83 #include "platform/geometry/FloatRect.h"
85 #include "platform/graphics/GraphicsContextStateSaver.h" 84 #include "platform/graphics/GraphicsContextStateSaver.h"
86 #include "platform/graphics/filters/ReferenceFilter.h" 85 #include "platform/graphics/filters/ReferenceFilter.h"
87 #include "platform/graphics/filters/SourceGraphic.h" 86 #include "platform/graphics/filters/SourceGraphic.h"
88 #include "platform/transforms/ScaleTransformOperation.h" 87 #include "platform/transforms/ScaleTransformOperation.h"
89 #include "platform/transforms/TransformationMatrix.h" 88 #include "platform/transforms/TransformationMatrix.h"
90 #include "platform/transforms/TranslateTransformOperation.h" 89 #include "platform/transforms/TranslateTransformOperation.h"
91 #include "public/platform/Platform.h" 90 #include "public/platform/Platform.h"
92 #include "wtf/StdLibExtras.h" 91 #include "wtf/StdLibExtras.h"
92 #include "wtf/TraceEvent.h"
93 #include "wtf/text/CString.h" 93 #include "wtf/text/CString.h"
94 94
95 using namespace std; 95 using namespace std;
96 96
97 namespace WebCore { 97 namespace WebCore {
98 98
99 namespace { 99 namespace {
100 100
101 static CompositingQueryMode gCompositingQueryMode = 101 static CompositingQueryMode gCompositingQueryMode =
102 CompositingQueriesAreOnlyAllowedInCertainDocumentLifecyclePhases; 102 CompositingQueriesAreOnlyAllowedInCertainDocumentLifecyclePhases;
(...skipping 3976 matching lines...) Expand 10 before | Expand all | Expand 10 after
4079 } 4079 }
4080 } 4080 }
4081 4081
4082 void showLayerTree(const WebCore::RenderObject* renderer) 4082 void showLayerTree(const WebCore::RenderObject* renderer)
4083 { 4083 {
4084 if (!renderer) 4084 if (!renderer)
4085 return; 4085 return;
4086 showLayerTree(renderer->enclosingLayer()); 4086 showLayerTree(renderer->enclosingLayer());
4087 } 4087 }
4088 #endif 4088 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698