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

Side by Side Diff: Source/core/platform/graphics/GraphicsLayer.cpp

Issue 25886002: Move TextStream to Source/platform/text/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 2 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/page/FrameView.cpp ('k') | Source/core/platform/graphics/filters/FEBlend.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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 17 matching lines...) Expand all
28 #include "core/platform/graphics/GraphicsLayer.h" 28 #include "core/platform/graphics/GraphicsLayer.h"
29 29
30 #include "SkImageFilter.h" 30 #include "SkImageFilter.h"
31 #include "SkMatrix44.h" 31 #include "SkMatrix44.h"
32 #include "core/platform/ScrollableArea.h" 32 #include "core/platform/ScrollableArea.h"
33 #include "core/platform/graphics/GraphicsContext.h" 33 #include "core/platform/graphics/GraphicsContext.h"
34 #include "core/platform/graphics/GraphicsLayerFactory.h" 34 #include "core/platform/graphics/GraphicsLayerFactory.h"
35 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h" 35 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h"
36 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" 36 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h"
37 #include "core/platform/graphics/skia/NativeImageSkia.h" 37 #include "core/platform/graphics/skia/NativeImageSkia.h"
38 #include "core/platform/text/TextStream.h"
39 #include "platform/geometry/FloatPoint.h" 38 #include "platform/geometry/FloatPoint.h"
40 #include "platform/geometry/FloatRect.h" 39 #include "platform/geometry/FloatRect.h"
41 #include "platform/geometry/LayoutRect.h" 40 #include "platform/geometry/LayoutRect.h"
41 #include "platform/text/TextStream.h"
42 #include "wtf/CurrentTime.h" 42 #include "wtf/CurrentTime.h"
43 #include "wtf/HashMap.h" 43 #include "wtf/HashMap.h"
44 #include "wtf/HashSet.h" 44 #include "wtf/HashSet.h"
45 #include "wtf/text/WTFString.h" 45 #include "wtf/text/WTFString.h"
46 46
47 #include "public/platform/Platform.h" 47 #include "public/platform/Platform.h"
48 #include "public/platform/WebAnimation.h" 48 #include "public/platform/WebAnimation.h"
49 #include "public/platform/WebCompositorSupport.h" 49 #include "public/platform/WebCompositorSupport.h"
50 #include "public/platform/WebFilterOperations.h" 50 #include "public/platform/WebFilterOperations.h"
51 #include "public/platform/WebFloatPoint.h" 51 #include "public/platform/WebFloatPoint.h"
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1218 #ifndef NDEBUG 1218 #ifndef NDEBUG
1219 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) 1219 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer)
1220 { 1220 {
1221 if (!layer) 1221 if (!layer)
1222 return; 1222 return;
1223 1223
1224 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); 1224 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo);
1225 fprintf(stderr, "%s\n", output.utf8().data()); 1225 fprintf(stderr, "%s\n", output.utf8().data());
1226 } 1226 }
1227 #endif 1227 #endif
OLDNEW
« no previous file with comments | « Source/core/page/FrameView.cpp ('k') | Source/core/platform/graphics/filters/FEBlend.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698