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

Unified Diff: content/browser/frame_host/navigator_delegate.cc

Issue 1269813002: Add a NavigationThrottle to the public content/ interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation-api
Patch Set: Addressed comments Created 5 years, 3 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/browser/frame_host/navigator_delegate.cc
diff --git a/content/browser/frame_host/navigator_delegate.cc b/content/browser/frame_host/navigator_delegate.cc
index 4389c81e2fbcbc881af96f4611db6120394b074b..0ce82f83db8a415b66582a3d53f60d3006b9d63b 100644
--- a/content/browser/frame_host/navigator_delegate.cc
+++ b/content/browser/frame_host/navigator_delegate.cc
@@ -6,6 +6,11 @@
namespace content {
+std::vector<NavigationThrottle*> NavigatorDelegate::AddNavigationThrottles(
+ NavigationHandle* navigation_handle) {
+ return std::vector<NavigationThrottle*>();
+}
+
bool NavigatorDelegate::CanOverscrollContent() const {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698