diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 02:51:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 09:51:37 +0000 |
commit | 716bedf160f4c4c1945cab54c3f490424a0eb779 (patch) | |
tree | c9592751a48527e3278a8a1e001b0569c97ff1d5 /cc/layers/io_surface_layer.h | |
parent | 6c879fbd35d14af9ca4fe53bc622edac2d3fd5f1 (diff) | |
download | chromium_src-716bedf160f4c4c1945cab54c3f490424a0eb779.zip chromium_src-716bedf160f4c4c1945cab54c3f490424a0eb779.tar.gz chromium_src-716bedf160f4c4c1945cab54c3f490424a0eb779.tar.bz2 |
Standardize usage of virtual/override/final in cc/
BUG=417463
TBR=enne@chromium.org
Review URL: https://codereview.chromium.org/645853008
Cr-Commit-Position: refs/heads/master@{#300439}
Diffstat (limited to 'cc/layers/io_surface_layer.h')
-rw-r--r-- | cc/layers/io_surface_layer.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/cc/layers/io_surface_layer.h b/cc/layers/io_surface_layer.h index 681f1a1..90bcf3e 100644 --- a/cc/layers/io_surface_layer.h +++ b/cc/layers/io_surface_layer.h @@ -16,18 +16,17 @@ class CC_EXPORT IOSurfaceLayer : public Layer { void SetIOSurfaceProperties(uint32_t io_surface_id, const gfx::Size& size); - virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) - override; - virtual void PushPropertiesTo(LayerImpl* layer) override; - virtual bool Update(ResourceUpdateQueue* queue, - const OcclusionTracker<Layer>* occlusion) override; + scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; + void PushPropertiesTo(LayerImpl* layer) override; + bool Update(ResourceUpdateQueue* queue, + const OcclusionTracker<Layer>* occlusion) override; protected: - virtual bool HasDrawableContent() const override; + bool HasDrawableContent() const override; IOSurfaceLayer(); private: - virtual ~IOSurfaceLayer(); + ~IOSurfaceLayer() override; uint32_t io_surface_id_; gfx::Size io_surface_size_; |