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

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

Issue 2730313002: Remove FrameHost::overscrollController() methods (Closed)
Patch Set: Rebase Created 3 years, 9 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.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameHost.cpp b/third_party/WebKit/Source/core/frame/FrameHost.cpp
index bd1177fa923a9a4652d20cd62a9f8dd42cf29e3c..fd9d06492da8b47eaef7fff1a65da62558485614 100644
--- a/third_party/WebKit/Source/core/frame/FrameHost.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameHost.cpp
@@ -32,7 +32,6 @@
#include "core/frame/FrameView.h"
#include "core/page/Page.h"
-#include "core/page/scrolling/OverscrollController.h"
#include "public/platform/Platform.h"
#include "public/platform/WebScheduler.h"
@@ -63,14 +62,6 @@ const BrowserControls& FrameHost::browserControls() const {
return m_page->browserControls();
}
-OverscrollController& FrameHost::overscrollController() {
- return page().overscrollController();
-}
-
-const OverscrollController& FrameHost::overscrollController() const {
- return page().overscrollController();
-}
-
DEFINE_TRACE(FrameHost) {
visitor->trace(m_page);
}
@@ -82,6 +73,7 @@ void FrameHost::incrementSubframeCount() {
void FrameHost::decrementSubframeCount() {
page().decrementSubframeCount();
}
+
int FrameHost::subframeCount() const {
return page().subframeCount();
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.h ('k') | third_party/WebKit/Source/core/input/ScrollManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698