| Index: cc/blink/web_layer_impl_fixed_bounds.h
|
| diff --git a/cc/blink/web_layer_impl_fixed_bounds.h b/cc/blink/web_layer_impl_fixed_bounds.h
|
| index 52f54cfd3b36fb90fb7c82701bb5602f64a783ca..907975ac2d6ef73a50683c26e49f695f1bf6217e 100644
|
| --- a/cc/blink/web_layer_impl_fixed_bounds.h
|
| +++ b/cc/blink/web_layer_impl_fixed_bounds.h
|
| @@ -19,18 +19,18 @@ namespace cc_blink {
|
| class WebLayerImplFixedBounds : public WebLayerImpl {
|
| public:
|
| CC_BLINK_EXPORT WebLayerImplFixedBounds();
|
| - CC_BLINK_EXPORT explicit WebLayerImplFixedBounds(scoped_refptr<cc::Layer>);
|
| + CC_BLINK_EXPORT explicit WebLayerImplFixedBounds(
|
| + scoped_refptr<cc::Layer> layer);
|
| virtual ~WebLayerImplFixedBounds();
|
|
|
| // WebLayerImpl overrides.
|
| - virtual void invalidateRect(const blink::WebFloatRect& rect) override;
|
| virtual void invalidateRect(const blink::WebRect& rect) override;
|
| virtual void setTransformOrigin(
|
| - const blink::WebFloatPoint3D& transform_origin);
|
| - virtual void setBounds(const blink::WebSize& bounds);
|
| - virtual blink::WebSize bounds() const;
|
| - virtual void setTransform(const SkMatrix44& transform);
|
| - virtual SkMatrix44 transform() const;
|
| + const blink::WebFloatPoint3D& transform_origin) override;
|
| + virtual void setBounds(const blink::WebSize& bounds) override;
|
| + virtual blink::WebSize bounds() const override;
|
| + virtual void setTransform(const SkMatrix44& transform) override;
|
| + virtual SkMatrix44 transform() const override;
|
|
|
| CC_BLINK_EXPORT void SetFixedBounds(gfx::Size bounds);
|
|
|
|
|