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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 2346663004: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 years, 3 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
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 #include "core/layout/svg/LayoutSVGResourceClipper.h" 70 #include "core/layout/svg/LayoutSVGResourceClipper.h"
71 #include "core/layout/svg/LayoutSVGRoot.h" 71 #include "core/layout/svg/LayoutSVGRoot.h"
72 #include "core/page/Page.h" 72 #include "core/page/Page.h"
73 #include "core/page/scrolling/ScrollingCoordinator.h" 73 #include "core/page/scrolling/ScrollingCoordinator.h"
74 #include "core/paint/BoxReflectionUtils.h" 74 #include "core/paint/BoxReflectionUtils.h"
75 #include "core/paint/FilterEffectBuilder.h" 75 #include "core/paint/FilterEffectBuilder.h"
76 #include "core/paint/ObjectPaintInvalidator.h" 76 #include "core/paint/ObjectPaintInvalidator.h"
77 #include "core/paint/PaintTiming.h" 77 #include "core/paint/PaintTiming.h"
78 #include "platform/LengthFunctions.h" 78 #include "platform/LengthFunctions.h"
79 #include "platform/RuntimeEnabledFeatures.h" 79 #include "platform/RuntimeEnabledFeatures.h"
80 #include "platform/TraceEvent.h"
81 #include "platform/geometry/FloatPoint3D.h" 80 #include "platform/geometry/FloatPoint3D.h"
82 #include "platform/geometry/FloatRect.h" 81 #include "platform/geometry/FloatRect.h"
83 #include "platform/geometry/TransformState.h" 82 #include "platform/geometry/TransformState.h"
84 #include "platform/graphics/CompositorFilterOperations.h" 83 #include "platform/graphics/CompositorFilterOperations.h"
85 #include "platform/graphics/filters/Filter.h" 84 #include "platform/graphics/filters/Filter.h"
86 #include "platform/graphics/filters/SkiaImageFilterBuilder.h" 85 #include "platform/graphics/filters/SkiaImageFilterBuilder.h"
86 #include "platform/tracing/TraceEvent.h"
87 #include "platform/transforms/ScaleTransformOperation.h" 87 #include "platform/transforms/ScaleTransformOperation.h"
88 #include "platform/transforms/TransformationMatrix.h" 88 #include "platform/transforms/TransformationMatrix.h"
89 #include "platform/transforms/TranslateTransformOperation.h" 89 #include "platform/transforms/TranslateTransformOperation.h"
90 #include "wtf/PtrUtil.h" 90 #include "wtf/PtrUtil.h"
91 #include "wtf/StdLibExtras.h" 91 #include "wtf/StdLibExtras.h"
92 #include "wtf/allocator/Partitions.h" 92 #include "wtf/allocator/Partitions.h"
93 #include "wtf/text/CString.h" 93 #include "wtf/text/CString.h"
94 94
95 namespace blink { 95 namespace blink {
96 96
(...skipping 2891 matching lines...) Expand 10 before | Expand all | Expand 10 after
2988 2988
2989 void showLayerTree(const blink::LayoutObject* layoutObject) 2989 void showLayerTree(const blink::LayoutObject* layoutObject)
2990 { 2990 {
2991 if (!layoutObject) { 2991 if (!layoutObject) {
2992 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); 2992 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n");
2993 return; 2993 return;
2994 } 2994 }
2995 showLayerTree(layoutObject->enclosingLayer()); 2995 showLayerTree(layoutObject->enclosingLayer());
2996 } 2996 }
2997 #endif 2997 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698