Index: cc/layers/picture_image_layer_impl.h |
diff --git a/cc/layers/picture_image_layer_impl.h b/cc/layers/picture_image_layer_impl.h |
index db36a1381921033150ac9dd2a2550b368c4cd2c7..7a363a17a847841e02c2b16dec191c83968b62e1 100644 |
--- a/cc/layers/picture_image_layer_impl.h |
+++ b/cc/layers/picture_image_layer_impl.h |
@@ -15,22 +15,20 @@ class CC_EXPORT PictureImageLayerImpl : public PictureLayerImpl { |
int id) { |
return make_scoped_ptr(new PictureImageLayerImpl(tree_impl, id)); |
} |
- virtual ~PictureImageLayerImpl(); |
+ ~PictureImageLayerImpl() override; |
// LayerImpl overrides. |
- virtual const char* LayerTypeAsString() const override; |
- virtual scoped_ptr<LayerImpl> CreateLayerImpl( |
- LayerTreeImpl* tree_impl) override; |
+ const char* LayerTypeAsString() const override; |
+ scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
protected: |
PictureImageLayerImpl(LayerTreeImpl* tree_impl, int id); |
- virtual bool ShouldAdjustRasterScale() const override; |
- virtual void RecalculateRasterScales() override; |
- virtual void GetDebugBorderProperties( |
- SkColor* color, float* width) const override; |
+ bool ShouldAdjustRasterScale() const override; |
+ void RecalculateRasterScales() override; |
+ void GetDebugBorderProperties(SkColor* color, float* width) const override; |
- virtual void UpdateIdealScales() override; |
+ void UpdateIdealScales() override; |
private: |
DISALLOW_COPY_AND_ASSIGN(PictureImageLayerImpl); |