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

Unified Diff: content/public/browser/navigation_handle.h

Issue 1964863002: Persist prompt/block download limiter state on renderer-initiated loads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing reviewer comments Created 4 years, 7 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/navigation_handle.h
diff --git a/content/public/browser/navigation_handle.h b/content/public/browser/navigation_handle.h
index 124ef31b0ab042f9db51b1a4a4257c009f8a9dff..0f7c7a89985051183dc5d9220b9b52260d94cc2e 100644
--- a/content/public/browser/navigation_handle.h
+++ b/content/public/browser/navigation_handle.h
@@ -47,6 +47,14 @@ class CONTENT_EXPORT NavigationHandle {
// of the main frame. This remains constant over the navigation lifetime.
virtual bool IsParentMainFrame() = 0;
+ // Whether the navigation was initated by the renderer process. Examples of
+ // renderer-initiated navigations include:
+ // * <a> link click
+ // * changing window.location.href
+ // * redirect via the <meta http-equiv="refresh"> tag
+ // * using window.history.pushState
+ virtual bool IsRendererInitiated() = 0;
+
// Whether the navigation is synchronous or not. Examples of synchronous
// navigations are:
// * reference fragment navigations

Powered by Google App Engine
This is Rietveld 408576698