[chromium] Fix up more includes in compositor code
authorjamesr@google.com <jamesr@google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 28 Jun 2012 20:19:52 +0000 (20:19 +0000)
committerjamesr@google.com <jamesr@google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 28 Jun 2012 20:19:52 +0000 (20:19 +0000)
https://bugs.webkit.org/show_bug.cgi?id=90200

Reviewed by Adrienne Walker.

Adds includes we are using and removes ones that we aren't using.

* platform/graphics/chromium/CanvasLayerTextureUpdater.cpp:
* platform/graphics/chromium/ContentLayerChromium.cpp:
* platform/graphics/chromium/ProgramBinding.cpp:
* platform/graphics/chromium/RenderSurfaceChromium.cpp:
* platform/graphics/chromium/cc/CCGraphicsContext.h:
* platform/graphics/chromium/cc/CCRenderSurface.h:
(WebCore):
* platform/graphics/chromium/cc/CCRenderSurfaceFilters.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121458 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/platform/graphics/chromium/CanvasLayerTextureUpdater.cpp
Source/WebCore/platform/graphics/chromium/ContentLayerChromium.cpp
Source/WebCore/platform/graphics/chromium/ProgramBinding.cpp
Source/WebCore/platform/graphics/chromium/RenderSurfaceChromium.cpp
Source/WebCore/platform/graphics/chromium/cc/CCGraphicsContext.h
Source/WebCore/platform/graphics/chromium/cc/CCRenderSurface.h
Source/WebCore/platform/graphics/chromium/cc/CCRenderSurfaceFilters.cpp

index 97db4c9..73420f5 100644 (file)
@@ -1,3 +1,21 @@
+2012-06-28  James Robinson  <jamesr@chromium.org>
+
+        [chromium] Fix up more includes in compositor code
+        https://bugs.webkit.org/show_bug.cgi?id=90200
+
+        Reviewed by Adrienne Walker.
+
+        Adds includes we are using and removes ones that we aren't using.
+
+        * platform/graphics/chromium/CanvasLayerTextureUpdater.cpp:
+        * platform/graphics/chromium/ContentLayerChromium.cpp:
+        * platform/graphics/chromium/ProgramBinding.cpp:
+        * platform/graphics/chromium/RenderSurfaceChromium.cpp:
+        * platform/graphics/chromium/cc/CCGraphicsContext.h:
+        * platform/graphics/chromium/cc/CCRenderSurface.h:
+        (WebCore):
+        * platform/graphics/chromium/cc/CCRenderSurfaceFilters.cpp:
+
 2012-06-28  Andrei Onea  <onea@adobe.com>
 
         [CSSRegions]Rename NamedFlow::contentNodes to NamedFlow::getContent()
index 7bd0040..81934ea 100644 (file)
@@ -30,6 +30,7 @@
 
 #include "CanvasLayerTextureUpdater.h"
 
+#include "FloatRect.h"
 #include "LayerPainterChromium.h"
 #include "SkCanvas.h"
 #include "SkPaint.h"
index 05ee552..58b0abf 100644 (file)
@@ -38,7 +38,6 @@
 #include "BitmapSkPictureCanvasLayerTextureUpdater.h"
 #include "FrameBufferSkPictureCanvasLayerTextureUpdater.h"
 #include "LayerPainterChromium.h"
-#include "PlatformSupport.h"
 #include "cc/CCLayerTreeHost.h"
 #include "cc/CCSettings.h"
 #include <public/Platform.h>
index 6afbb34..72e49e2 100644 (file)
@@ -34,6 +34,7 @@
 #include "LayerRendererChromium.h"
 #include "TraceEvent.h"
 #include <public/WebGraphicsContext3D.h>
+#include <wtf/text/CString.h>
 
 using WebKit::WebGraphicsContext3D;
 
index a5c4c60..5176145 100644 (file)
@@ -29,7 +29,6 @@
 
 #include "RenderSurfaceChromium.h"
 
-#include "FilterOperations.h"
 #include "LayerChromium.h"
 #include "cc/CCMathUtil.h"
 #include <public/WebTransformationMatrix.h>
index 43536a4..405885f 100644 (file)
@@ -29,6 +29,7 @@
 #include <public/WebGraphicsContext3D.h>
 #include <wtf/Noncopyable.h>
 #include <wtf/OwnPtr.h>
+#include <wtf/PassOwnPtr.h>
 
 namespace WebCore {
 
index cdd7a7b..029e1f6 100644 (file)
@@ -35,6 +35,7 @@
 #include <public/WebFilterOperations.h>
 #include <public/WebTransformationMatrix.h>
 #include <wtf/Noncopyable.h>
+#include <wtf/text/WTFString.h>
 
 namespace WebCore {
 
@@ -45,6 +46,7 @@ class CCSharedQuadState;
 class CCLayerImpl;
 class LayerRendererChromium;
 class ManagedTexture;
+class TextStream;
 
 class CCRenderSurface {
     WTF_MAKE_NONCOPYABLE(CCRenderSurface);
index 30e4bff..2f031bf 100644 (file)
@@ -29,8 +29,8 @@
 
 #include "cc/CCRenderSurfaceFilters.h"
 
+#include "FloatSize.h"
 #include "GraphicsContext3D.h"
-#include "LengthFunctions.h"
 #include "SkBlurImageFilter.h"
 #include "SkCanvas.h"
 #include "SkColorMatrixFilter.h"
@@ -38,6 +38,7 @@
 #include "SkGrTexturePixelRef.h"
 #include <public/WebFilterOperation.h>
 #include <public/WebFilterOperations.h>
+#include <wtf/MathExtras.h>
 
 namespace {