summaryrefslogtreecommitdiff
path: root/chromium/cc/resources/skpicture_content_layer_updater.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/cc/resources/skpicture_content_layer_updater.h')
-rw-r--r--chromium/cc/resources/skpicture_content_layer_updater.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/chromium/cc/resources/skpicture_content_layer_updater.h b/chromium/cc/resources/skpicture_content_layer_updater.h
index 41a9f01e14e..511d8ee9bfd 100644
--- a/chromium/cc/resources/skpicture_content_layer_updater.h
+++ b/chromium/cc/resources/skpicture_content_layer_updater.h
@@ -20,9 +20,6 @@ class LayerPainter;
// FrameBufferSkPictureContentLayerUpdater are two examples of such
// implementations.
class SkPictureContentLayerUpdater : public ContentLayerUpdater {
- public:
- virtual void SetOpaque(bool opaque) OVERRIDE;
-
protected:
SkPictureContentLayerUpdater(
scoped_ptr<LayerPainter> painter,
@@ -37,13 +34,9 @@ class SkPictureContentLayerUpdater : public ContentLayerUpdater {
gfx::Rect* resulting_opaque_rect) OVERRIDE;
void DrawPicture(SkCanvas* canvas);
- bool layer_is_opaque() const { return layer_is_opaque_; }
-
private:
// Recording canvas.
SkPicture picture_;
- // True when it is known that all output pixels will be opaque.
- bool layer_is_opaque_;
DISALLOW_COPY_AND_ASSIGN(SkPictureContentLayerUpdater);
};