| Index: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| diff --git a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| index e1371ac7de895a8ba26dc9aee15b8b1169352e4b..493275aab0ae6415e714166f599afec3df442b9e 100644
|
| --- a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| +++ b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| @@ -497,10 +497,6 @@ void ChromeResourceDispatcherHostDelegate::OnResponseStarted(
|
| content::ResourceContext* resource_context,
|
| content::ResourceResponse* response,
|
| IPC::Sender* sender) {
|
| - // TODO(mmenke): Figure out if LOAD_ENABLE_LOAD_TIMING is safe to remove.
|
| - if (request->load_flags() & net::LOAD_ENABLE_LOAD_TIMING)
|
| - request->GetLoadTimingInfo(&response->head.load_timing);
|
| -
|
| const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request);
|
|
|
| if (request->url().SchemeIsSecure()) {
|
| @@ -558,10 +554,6 @@ void ChromeResourceDispatcherHostDelegate::OnRequestRedirected(
|
| net::URLRequest* request,
|
| content::ResourceContext* resource_context,
|
| content::ResourceResponse* response) {
|
| - // TODO(mmenke): Figure out if LOAD_ENABLE_LOAD_TIMING is safe to remove.
|
| - if (request->load_flags() & net::LOAD_ENABLE_LOAD_TIMING)
|
| - request->GetLoadTimingInfo(&response->head.load_timing);
|
| -
|
| ProfileIOData* io_data = ProfileIOData::FromResourceContext(resource_context);
|
|
|
| #if defined(ENABLE_ONE_CLICK_SIGNIN)
|
|
|