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

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

Issue 25494003: Move geometry classes from core/platform/graphics to platform/geometry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/platform/graphics/GraphicsLayer.h ('k') | Source/core/platform/graphics/Image.h » ('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 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 27
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/FloatPoint.h"
34 #include "core/platform/graphics/FloatRect.h"
35 #include "core/platform/graphics/GraphicsContext.h" 33 #include "core/platform/graphics/GraphicsContext.h"
36 #include "core/platform/graphics/GraphicsLayerFactory.h" 34 #include "core/platform/graphics/GraphicsLayerFactory.h"
37 #include "core/platform/graphics/LayoutRect.h"
38 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h" 35 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h"
39 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" 36 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h"
40 #include "core/platform/graphics/skia/NativeImageSkia.h" 37 #include "core/platform/graphics/skia/NativeImageSkia.h"
41 #include "core/platform/text/TextStream.h" 38 #include "core/platform/text/TextStream.h"
42 39 #include "platform/geometry/FloatPoint.h"
40 #include "platform/geometry/FloatRect.h"
41 #include "platform/geometry/LayoutRect.h"
43 #include "wtf/CurrentTime.h" 42 #include "wtf/CurrentTime.h"
44 #include "wtf/HashMap.h" 43 #include "wtf/HashMap.h"
45 #include "wtf/HashSet.h" 44 #include "wtf/HashSet.h"
46 #include "wtf/text/WTFString.h" 45 #include "wtf/text/WTFString.h"
47 46
48 #include "public/platform/Platform.h" 47 #include "public/platform/Platform.h"
49 #include "public/platform/WebAnimation.h" 48 #include "public/platform/WebAnimation.h"
50 #include "public/platform/WebCompositorSupport.h" 49 #include "public/platform/WebCompositorSupport.h"
51 #include "public/platform/WebFilterOperations.h" 50 #include "public/platform/WebFilterOperations.h"
52 #include "public/platform/WebFloatPoint.h" 51 #include "public/platform/WebFloatPoint.h"
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 #ifndef NDEBUG 1234 #ifndef NDEBUG
1236 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) 1235 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer)
1237 { 1236 {
1238 if (!layer) 1237 if (!layer)
1239 return; 1238 return;
1240 1239
1241 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); 1240 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo);
1242 fprintf(stderr, "%s\n", output.utf8().data()); 1241 fprintf(stderr, "%s\n", output.utf8().data());
1243 } 1242 }
1244 #endif 1243 #endif
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/GraphicsLayer.h ('k') | Source/core/platform/graphics/Image.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698