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

Unified Diff: content/common/view_messages.h

Issue 9978015: Make browser_handles_top_level_requests synchronous. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ExternalTabContainer::ShouldIgnoreNavigation returns true if is_content_initiated Created 8 years, 8 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/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 177c153ff68cde469f63d54cbcbad32b24ebfd12..57910ec694b30b83d9692da57b4f583c0de35df7 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1614,6 +1614,16 @@ IPC_MESSAGE_ROUTED4(ViewHostMsg_OpenURL,
WindowOpenDisposition /* disposition */,
int64 /* frame id */)
+// Lets the browser instruct the renderer to ignore a specific navigation
+// request.
+IPC_SYNC_MESSAGE_ROUTED5_1(ViewHostMsg_ShouldIgnoreNavigation,
+ GURL /* in - url */,
+ content::Referrer /* in - referrer */,
+ WindowOpenDisposition /* in - disposition */,
+ int64 /* in - frame id */,
+ bool /* in - is_content_initiated */,
+ bool /* out - result */)
+
// Notifies that the preferred size of the content changed.
IPC_MESSAGE_ROUTED1(ViewHostMsg_DidContentsPreferredSizeChange,
gfx::Size /* pref_size */)

Powered by Google App Engine
This is Rietveld 408576698