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

Unified Diff: content/common/frame_messages.h

Issue 2499313003: Set user_gesture bit at NavigationHandle creation time. (Closed)
Patch Set: comments Created 4 years, 1 month 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/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index cd2e4ee3c26a4033952e5e29b04872a02e0af1a4..b3612e61b15d7aa52564a03ca6350eda51ef5272 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -961,9 +961,10 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone,
IPC_MESSAGE_ROUTED0(FrameHostMsg_FrameFocused)
// Sent when the renderer starts a provisional load for a frame.
-IPC_MESSAGE_ROUTED2(FrameHostMsg_DidStartProvisionalLoad,
+IPC_MESSAGE_ROUTED3(FrameHostMsg_DidStartProvisionalLoad,
GURL /* url */,
- base::TimeTicks /* navigation_start */)
+ base::TimeTicks /* navigation_start */,
+ bool /* has_user_gesture */)
// Sent when the renderer fails a provisional load with an error.
IPC_MESSAGE_ROUTED1(FrameHostMsg_DidFailProvisionalLoadWithError,

Powered by Google App Engine
This is Rietveld 408576698