| 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.
|
|
|