summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h')
-rw-r--r--Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h b/Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h
index 9f3a263..cbaebed 100644
--- a/Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h
+++ b/Source/WebCore/platform/graphics/android/layers/PicturePileLayerContent.h
@@ -41,7 +41,7 @@ public:
virtual void setCheckForOptimisations(bool check) {}
virtual void checkForOptimisations() {} // already performed, stored in m_hasText/m_hasContent
- virtual bool hasText() { return m_hasText; }
+ virtual float maxZoomScale() { return m_maxZoomScale; }
virtual void draw(SkCanvas* canvas);
virtual void serialize(SkWStream* stream);
virtual PrerenderedInval* prerenderForRect(const IntRect& dirty);
@@ -50,7 +50,7 @@ public:
private:
PicturePile m_picturePile;
- bool m_hasText;
+ float m_maxZoomScale;
bool m_hasContent;
};