Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2433)

Unified Diff: cc/blink/web_layer_impl_fixed_bounds.h

Issue 638213004: cc: Remove WebLayerImpl::invalidateRect(WebFloatRect) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rm-invalidatefloatrect: . Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/blink/web_layer_impl.cc ('k') | cc/blink/web_layer_impl_fixed_bounds.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..fa88d6b6054848c11f1a0bf1815b760d7a458685 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;
+ const blink::WebFloatPoint3D& transform_origin) override;
danakj 2014/10/14 18:00:56 I left the override on invalidateRect and added th
+ virtual void setBounds(const blink::WebSize& bounds) override;
+ virtual blink::WebSize bounds() const override;
virtual void setTransform(const SkMatrix44& transform);
enne (OOO) 2014/10/14 19:27:27 This doesn't need an override?
danakj 2014/10/14 19:28:21 oops missed
- virtual SkMatrix44 transform() const;
+ virtual SkMatrix44 transform() const override;
CC_BLINK_EXPORT void SetFixedBounds(gfx::Size bounds);
« no previous file with comments | « cc/blink/web_layer_impl.cc ('k') | cc/blink/web_layer_impl_fixed_bounds.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698