summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/SurfaceCollection.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/android/SurfaceCollection.h')
-rw-r--r--Source/WebCore/platform/graphics/android/SurfaceCollection.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/WebCore/platform/graphics/android/SurfaceCollection.h b/Source/WebCore/platform/graphics/android/SurfaceCollection.h
index e73ec9a..6450c9c 100644
--- a/Source/WebCore/platform/graphics/android/SurfaceCollection.h
+++ b/Source/WebCore/platform/graphics/android/SurfaceCollection.h
@@ -29,7 +29,8 @@
#include "Color.h"
#include "SkRect.h"
#include "SkRefCnt.h"
-#include "Vector.h"
+
+#include <wtf/Vector.h>
class SkCanvas;
class SkRegion;
@@ -37,7 +38,7 @@ class SkRegion;
namespace WebCore {
class LayerAndroid;
-class LayerGroup;
+class Surface;
class TexturesResult;
class SurfaceCollection : public SkRefCnt {
@@ -67,7 +68,7 @@ public:
private:
void updateLayerPositions(const SkRect& visibleRect);
LayerAndroid* m_compositedRoot;
- Vector<LayerGroup*> m_layerGroups;
+ WTF::Vector<Surface*> m_surfaces;
};
} // namespace WebCore