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

Unified Diff: content/common/navigation_params.h

Issue 1425823002: (DEPRECATED) Send navigation_start to browser process in DidStartProvisionalLoad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Name change + blink layering Created 5 years, 2 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/navigation_params.h
diff --git a/content/common/navigation_params.h b/content/common/navigation_params.h
index cf3d89a2cbb2fb9473b23918cecb02e030a3d161..40dbc58f2f0b3c76b0e6ea8f6efb9f33465ce5cf 100644
--- a/content/common/navigation_params.h
+++ b/content/common/navigation_params.h
@@ -127,7 +127,8 @@ struct CONTENT_EXPORT BeginNavigationParams {
int load_flags,
bool has_user_gesture,
bool skip_service_worker,
- RequestContextType request_context_type);
+ RequestContextType request_context_type,
+ double renderer_navigation_start);
clamy 2015/10/28 12:40:01 Instead of adding a new value in BeginNavigationPa
// The request method: GET, POST, etc.
std::string method;
@@ -146,6 +147,9 @@ struct CONTENT_EXPORT BeginNavigationParams {
// Indicates the request context type.
RequestContextType request_context_type;
+
+ // The time the navigation started in the renderer.
+ double renderer_navigation_start;
};
// Provided by the browser -----------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698