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

Unified Diff: content/public/browser/content_browser_client.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/public/browser/content_browser_client.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index 5c4acbaaacb2559b95a36df286ece756af45a7e0..548a07b65a49e4c400896ffa3c92488b3279e343 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -354,6 +354,12 @@ void ContentBrowserClient::OpenURL(
callback.Run(nullptr);
}
+std::vector<NavigationThrottle*> ContentBrowserClient::AddNavigationThrottles(
+ NavigationHandle* navigation_handle,
+ WebContents* web_contents) {
+ return std::vector<NavigationThrottle*>();
+}
+
#if defined(OS_WIN)
const wchar_t* ContentBrowserClient::GetResourceDllName() {
return nullptr;

Powered by Google App Engine
This is Rietveld 408576698