Chromium Code Reviews| Index: public/platform/WebLayer.h |
| diff --git a/public/platform/WebLayer.h b/public/platform/WebLayer.h |
| index 2ffb901f23ca5afd6cc164b69ad6fc3d0e69bfdf..fc8e210ad434bf105e33f1565943e793d096661b 100644 |
| --- a/public/platform/WebLayer.h |
| +++ b/public/platform/WebLayer.h |
| @@ -173,8 +173,7 @@ public: |
| virtual WebSize maxScrollPosition() const = 0; |
| // To set a WebLayer as scrollable we must specify the corresponding clip layer. |
| - // TODO(wjmaclean) Make this pure virtual once https://codereview.chromium.org/23983047 lands. |
| - virtual void setScrollClipLayer(WebLayer*) { } |
| + virtual void setScrollClipLayer(WebLayer*) = 0; |
|
wjmaclean
2014/01/31 13:38:25
nit: Don't need a blank line after this one.
deepak.sa
2014/02/01 09:15:24
Done.
|
| virtual bool scrollable() const = 0; |
| virtual void setUserScrollable(bool horizontal, bool vertical) = 0; |
| @@ -216,10 +215,6 @@ public: |
| virtual bool isOrphan() const = 0; |
| virtual void setWebLayerClient(WebLayerClient*) = 0; |
| - |
| - // TODO(wjmaclean) Remove next two lines once https://codereview.chromium.org/23983047 lands. |
| - virtual void setMaxScrollPosition(WebSize) { } |
| - virtual void setScrollable(bool) { } |
| }; |
| } // namespace blink |