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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp

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: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
index 0cdec27cb9fcfb373355f81d49aa85f0b1cd1e63..33cd97b1bdcf7654190125833ce0caf24a934aae 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
@@ -423,6 +423,16 @@ void WebURLRequest::setCheckForBrowserSideNavigation(bool check)
m_private->m_resourceRequest->setCheckForBrowserSideNavigation(check);
}
+double WebURLRequest::browserNavigationStartTime() const
+{
+ return m_private->m_resourceRequest->browserNavigationStartTime();
+}
+
+void WebURLRequest::setBrowserNavigationStartTime(double time)
+{
+ m_private->m_resourceRequest->setBrowserNavigationStartTime(time);
+}
+
double WebURLRequest::uiStartTime() const
{
return m_private->m_resourceRequest->uiStartTime();

Powered by Google App Engine
This is Rietveld 408576698