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

Unified Diff: content/renderer/renderer_webkitplatformsupport_impl.h

Issue 175903002: Re-add snap-back behavior (Chrome side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 10 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
Index: content/renderer/renderer_webkitplatformsupport_impl.h
===================================================================
--- content/renderer/renderer_webkitplatformsupport_impl.h (revision 252686)
+++ content/renderer/renderer_webkitplatformsupport_impl.h (working copy)
@@ -43,6 +43,7 @@
class WebCryptoImpl;
class WebDatabaseObserverImpl;
class WebFileSystemImpl;
+class WebScrollbarBehaviorImpl;
class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
: public WebKitPlatformSupportImpl {
@@ -91,6 +92,7 @@
blink::WebPluginListBuilder* builder);
virtual blink::WebPublicSuffixList* publicSuffixList();
virtual void screenColorProfile(blink::WebVector<char>* to_profile);
+ virtual blink::WebScrollbarBehavior* scrollbarBehavior();
virtual blink::WebIDBFactory* idbFactory();
virtual blink::WebFileSystem* fileSystem();
virtual bool canAccelerate2dCanvas();
@@ -218,6 +220,8 @@
scoped_ptr<WebCryptoImpl> web_crypto_;
+ scoped_ptr<WebScrollbarBehaviorImpl> web_scrollbar_behavior_;
+
DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl);
};

Powered by Google App Engine
This is Rietveld 408576698