summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/LayerGroup.h
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2012-03-23 12:55:41 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-23 12:55:41 -0700
commita83257eb9d324048471edcf2974b54c20894a940 (patch)
treedb7db6ce78964bc9b70f7fe8f50ed8e2230291e7 /Source/WebCore/platform/graphics/android/LayerGroup.h
parent666bc03d3d901a137fa40473104c9258ff77801d (diff)
parent885e650b12d781be054b31ae6221925a0184dc33 (diff)
downloadexternal_webkit-a83257eb9d324048471edcf2974b54c20894a940.zip
external_webkit-a83257eb9d324048471edcf2974b54c20894a940.tar.gz
external_webkit-a83257eb9d324048471edcf2974b54c20894a940.tar.bz2
Merge "reimplement BaseLayerAndroid as a LayerAndroid subclass"
Diffstat (limited to 'Source/WebCore/platform/graphics/android/LayerGroup.h')
-rw-r--r--Source/WebCore/platform/graphics/android/LayerGroup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/LayerGroup.h b/Source/WebCore/platform/graphics/android/LayerGroup.h
index 90001a5..edfb30d 100644
--- a/Source/WebCore/platform/graphics/android/LayerGroup.h
+++ b/Source/WebCore/platform/graphics/android/LayerGroup.h
@@ -37,8 +37,8 @@ namespace WebCore {
class BaseTile;
class DualTiledTexture;
-class TexturesResult;
class LayerAndroid;
+class TexturesResult;
class LayerGroup : public TilePainter {
public:
@@ -47,7 +47,6 @@ public:
bool tryUpdateLayerGroup(LayerGroup* oldLayerGroup);
-
void addLayer(LayerAndroid* layer, const TransformationMatrix& transform);
IntRect visibleArea();
void prepareGL(bool layerTilesDisabled);
@@ -62,6 +61,7 @@ public:
bool singleLayer() { return m_layers.size() == 1; }
bool needsTexture() { return m_needsTexture; }
bool hasText() { return m_hasText; }
+ bool isBase();
// TilePainter methods
virtual bool paint(BaseTile* tile, SkCanvas* canvas);