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

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

Issue 316353004: Remove the report load timing field in ResourceRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removing the reportLoadTiming field from ResourceRequest Created 6 years, 6 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
« no previous file with comments | « Source/core/inspector/InspectorResourceAgent.cpp ('k') | Source/platform/network/ResourceRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebURLRequest.cpp
diff --git a/Source/platform/exported/WebURLRequest.cpp b/Source/platform/exported/WebURLRequest.cpp
index 854c5947d3ce6b0861e2b7bc4c5aa8e2bd3b900b..a8e39f255c0981b0380e91f049b25e79a5524397 100644
--- a/Source/platform/exported/WebURLRequest.cpp
+++ b/Source/platform/exported/WebURLRequest.cpp
@@ -214,11 +214,6 @@ void WebURLRequest::setReportUploadProgress(bool reportUploadProgress)
m_private->m_resourceRequest->setReportUploadProgress(reportUploadProgress);
}
-bool WebURLRequest::reportLoadTiming() const
-{
- return m_private->m_resourceRequest->reportLoadTiming();
-}
-
void WebURLRequest::setReportRawHeaders(bool reportRawHeaders)
{
m_private->m_resourceRequest->setReportRawHeaders(reportRawHeaders);
@@ -229,11 +224,6 @@ bool WebURLRequest::reportRawHeaders() const
return m_private->m_resourceRequest->reportRawHeaders();
}
-void WebURLRequest::setReportLoadTiming(bool reportLoadTiming)
-{
- m_private->m_resourceRequest->setReportLoadTiming(reportLoadTiming);
-}
-
WebURLRequest::TargetType WebURLRequest::targetType() const
{
// FIXME: Temporary special case until downstream chromium.org knows of the new TargetTypes.
« no previous file with comments | « Source/core/inspector/InspectorResourceAgent.cpp ('k') | Source/platform/network/ResourceRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698