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

Unified Diff: third_party/WebKit/Source/core/frame/FrameHost.h

Issue 1915783002: Move overscroll logic out of EventHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made ChromeClient a traced Member<> Created 4 years, 8 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: third_party/WebKit/Source/core/frame/FrameHost.h
diff --git a/third_party/WebKit/Source/core/frame/FrameHost.h b/third_party/WebKit/Source/core/frame/FrameHost.h
index ebfac92146f77f9873583e46ef8084b277f7025c..3de6ceee7bf1678ea2b484d89d72c72fb26e4d59 100644
--- a/third_party/WebKit/Source/core/frame/FrameHost.h
+++ b/third_party/WebKit/Source/core/frame/FrameHost.h
@@ -45,6 +45,7 @@ class ChromeClient;
class ConsoleMessageStorage;
class Deprecation;
class EventHandlerRegistry;
+class OverscrollController;
class Page;
struct PageScaleConstraints;
class PageScaleConstraintsSet;
@@ -82,6 +83,7 @@ public:
float deviceScaleFactor() const;
TopControls& topControls() const;
+ OverscrollController& overscrollController() const;
VisualViewport& visualViewport() const;
PageScaleConstraintsSet& pageScaleConstraintsSet() const;
EventHandlerRegistry& eventHandlerRegistry() const;
@@ -112,6 +114,7 @@ private:
const Member<TopControls> m_topControls;
const OwnPtr<PageScaleConstraintsSet> m_pageScaleConstraintsSet;
const Member<VisualViewport> m_visualViewport;
+ const Member<OverscrollController> m_overscrollController;
const Member<EventHandlerRegistry> m_eventHandlerRegistry;
const Member<ConsoleMessageStorage> m_consoleMessageStorage;

Powered by Google App Engine
This is Rietveld 408576698