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

Unified Diff: content/browser/renderer_host/render_view_host_delegate_view.cc

Issue 2528823002: Separate SwipeRefreshHandler and ContentViewCore (Closed)
Patch Set: Fix non-Android compile issue Created 4 years 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/browser/renderer_host/render_view_host_delegate_view.cc
diff --git a/content/browser/renderer_host/render_view_host_delegate_view.cc b/content/browser/renderer_host/render_view_host_delegate_view.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fa3e3fd0926269134f87f366dfd01937fc4782f0
--- /dev/null
+++ b/content/browser/renderer_host/render_view_host_delegate_view.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
boliu 2016/12/03 01:05:28 remove (c)
rlanday 2016/12/05 19:53:56 Good catch! Would be nice to have a presubmit rule
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/renderer_host/render_view_host_delegate_view.h"
+
+namespace content {
+
+#if defined(OS_ANDROID)
+ui::OverscrollRefreshHandler*
+content::RenderViewHostDelegateView::GetOverscrollRefreshHandler() const {
+ return nullptr;
+}
+#endif
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698