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

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

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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) 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 16 matching lines...) Expand all
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/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/filters/SkiaImageFilterBuilder.h" 35 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h"
36 #include "core/platform/graphics/skia/NativeImageSkia.h" 36 #include "core/platform/graphics/skia/NativeImageSkia.h"
37 #include "platform/geometry/FloatPoint.h"
38 #include "platform/geometry/FloatRect.h" 37 #include "platform/geometry/FloatRect.h"
39 #include "platform/geometry/LayoutRect.h" 38 #include "platform/geometry/LayoutRect.h"
40 #include "platform/text/TextStream.h" 39 #include "platform/text/TextStream.h"
41 #include "platform/transforms/TransformationMatrix.h"
42 #include "wtf/CurrentTime.h" 40 #include "wtf/CurrentTime.h"
43 #include "wtf/HashMap.h" 41 #include "wtf/HashMap.h"
44 #include "wtf/HashSet.h" 42 #include "wtf/HashSet.h"
45 #include "wtf/text/WTFString.h" 43 #include "wtf/text/WTFString.h"
46 44
47 #include "public/platform/Platform.h" 45 #include "public/platform/Platform.h"
48 #include "public/platform/WebAnimation.h" 46 #include "public/platform/WebAnimation.h"
49 #include "public/platform/WebCompositorSupport.h" 47 #include "public/platform/WebCompositorSupport.h"
50 #include "public/platform/WebFilterOperations.h" 48 #include "public/platform/WebFilterOperations.h"
51 #include "public/platform/WebFloatPoint.h" 49 #include "public/platform/WebFloatPoint.h"
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1205 #ifndef NDEBUG 1203 #ifndef NDEBUG
1206 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) 1204 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer)
1207 { 1205 {
1208 if (!layer) 1206 if (!layer)
1209 return; 1207 return;
1210 1208
1211 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); 1209 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo);
1212 fprintf(stderr, "%s\n", output.utf8().data()); 1210 fprintf(stderr, "%s\n", output.utf8().data());
1213 } 1211 }
1214 #endif 1212 #endif
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/GraphicsContext3D.cpp ('k') | Source/core/platform/graphics/Image.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698