diff options
author | mostynb <mostynb@opera.com> | 2014-10-06 11:07:37 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-06 18:07:51 +0000 |
commit | f68776d8c52601899d957c7ac222693fd51405d2 (patch) | |
tree | e769b135b24375bf55447c1c4638a99927e4d98c /cc/layers/painted_scrollbar_layer.h | |
parent | ee4b857ca20186868aad7a5b22fc454a11b6fe86 (diff) | |
download | chromium_src-f68776d8c52601899d957c7ac222693fd51405d2.zip chromium_src-f68776d8c52601899d957c7ac222693fd51405d2.tar.gz chromium_src-f68776d8c52601899d957c7ac222693fd51405d2.tar.bz2 |
replace OVERRIDE and FINAL with override and final in cc/
BUG=417463
Review URL: https://codereview.chromium.org/628443002
Cr-Commit-Position: refs/heads/master@{#298271}
Diffstat (limited to 'cc/layers/painted_scrollbar_layer.h')
-rw-r--r-- | cc/layers/painted_scrollbar_layer.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/cc/layers/painted_scrollbar_layer.h b/cc/layers/painted_scrollbar_layer.h index cd6a046..8a621e3 100644 --- a/cc/layers/painted_scrollbar_layer.h +++ b/cc/layers/painted_scrollbar_layer.h @@ -20,32 +20,32 @@ class CC_EXPORT PaintedScrollbarLayer : public ScrollbarLayerInterface, public ContentsScalingLayer { public: virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) - OVERRIDE; + override; static scoped_refptr<PaintedScrollbarLayer> Create( scoped_ptr<Scrollbar> scrollbar, int scroll_layer_id); - virtual bool OpacityCanAnimateOnImplThread() const OVERRIDE; - virtual ScrollbarLayerInterface* ToScrollbarLayer() OVERRIDE; + virtual bool OpacityCanAnimateOnImplThread() const override; + virtual ScrollbarLayerInterface* ToScrollbarLayer() override; // ScrollbarLayerInterface - virtual int ScrollLayerId() const OVERRIDE; - virtual void SetScrollLayer(int layer_id) OVERRIDE; - virtual void SetClipLayer(int layer_id) OVERRIDE; + virtual int ScrollLayerId() const override; + virtual void SetScrollLayer(int layer_id) override; + virtual void SetClipLayer(int layer_id) override; - virtual ScrollbarOrientation orientation() const OVERRIDE; + virtual ScrollbarOrientation orientation() const override; // Layer interface virtual bool Update(ResourceUpdateQueue* queue, - const OcclusionTracker<Layer>* occlusion) OVERRIDE; - virtual void SetLayerTreeHost(LayerTreeHost* host) OVERRIDE; - virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE; - virtual void PushScrollClipPropertiesTo(LayerImpl* layer) OVERRIDE; + const OcclusionTracker<Layer>* occlusion) override; + virtual void SetLayerTreeHost(LayerTreeHost* host) override; + virtual void PushPropertiesTo(LayerImpl* layer) override; + virtual void PushScrollClipPropertiesTo(LayerImpl* layer) override; virtual void CalculateContentsScale(float ideal_contents_scale, float* contents_scale_x, float* contents_scale_y, - gfx::Size* content_bounds) OVERRIDE; + gfx::Size* content_bounds) override; protected: PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar, int scroll_layer_id); |