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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 2449553002: Remove dead DocumentState metrics tracking code (Closed)
Patch Set: fix tests 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: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
index ff994e85e97eb275ddb33af0cbeefa75f962e9d5..21133e8fa487ba9e59ebd62792d11f3d3e7f9465 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -417,11 +417,9 @@ void FrameLoaderClientImpl::dispatchWillCommitProvisionalLoad() {
m_webFrame->client()->willCommitProvisionalLoad(m_webFrame);
}
-void FrameLoaderClientImpl::dispatchDidStartProvisionalLoad(
- double triggeringEventTime) {
+void FrameLoaderClientImpl::dispatchDidStartProvisionalLoad() {
if (m_webFrame->client())
- m_webFrame->client()->didStartProvisionalLoad(m_webFrame,
- triggeringEventTime);
+ m_webFrame->client()->didStartProvisionalLoad(m_webFrame);
if (WebDevToolsAgentImpl* devTools = devToolsAgent())
devTools->didStartProvisionalLoad(m_webFrame->frame());
}

Powered by Google App Engine
This is Rietveld 408576698