summaryrefslogtreecommitdiffstats
path: root/cc/resources/image_layer_updater.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/resources/image_layer_updater.h')
-rw-r--r--cc/resources/image_layer_updater.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cc/resources/image_layer_updater.h b/cc/resources/image_layer_updater.h
index 55fdfe5..81225ba 100644
--- a/cc/resources/image_layer_updater.h
+++ b/cc/resources/image_layer_updater.h
@@ -19,12 +19,12 @@ class CC_EXPORT ImageLayerUpdater : public LayerUpdater {
public:
Resource(ImageLayerUpdater* updater,
scoped_ptr<PrioritizedResource> texture);
- virtual ~Resource();
+ ~Resource() override;
- virtual void Update(ResourceUpdateQueue* queue,
- const gfx::Rect& source_rect,
- const gfx::Vector2d& dest_offset,
- bool partial_update) override;
+ void Update(ResourceUpdateQueue* queue,
+ const gfx::Rect& source_rect,
+ const gfx::Vector2d& dest_offset,
+ bool partial_update) override;
private:
ImageLayerUpdater* updater_;
@@ -34,7 +34,7 @@ class CC_EXPORT ImageLayerUpdater : public LayerUpdater {
static scoped_refptr<ImageLayerUpdater> Create();
- virtual scoped_ptr<LayerUpdater::Resource> CreateResource(
+ scoped_ptr<LayerUpdater::Resource> CreateResource(
PrioritizedResourceManager*) override;
void UpdateTexture(ResourceUpdateQueue* queue,
@@ -48,7 +48,7 @@ class CC_EXPORT ImageLayerUpdater : public LayerUpdater {
private:
ImageLayerUpdater() {}
- virtual ~ImageLayerUpdater() {}
+ ~ImageLayerUpdater() override {}
SkBitmap bitmap_;