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

Side by Side Diff: content/public/browser/resource_dispatcher_host_delegate.cc

Issue 1721813002: Adding DRP specfic UMA for FirstContentfulPaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing nits Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/browser/resource_dispatcher_host_delegate.h" 5 #include "content/public/browser/resource_dispatcher_host_delegate.h"
6 6
7 #include "content/public/browser/resource_request_info.h" 7 #include "content/public/browser/resource_request_info.h"
8 #include "content/public/browser/stream_info.h" 8 #include "content/public/browser/stream_info.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 void ResourceDispatcherHostDelegate::RequestComplete( 90 void ResourceDispatcherHostDelegate::RequestComplete(
91 net::URLRequest* url_request) { 91 net::URLRequest* url_request) {
92 } 92 }
93 93
94 bool ResourceDispatcherHostDelegate::ShouldEnableLoFiMode( 94 bool ResourceDispatcherHostDelegate::ShouldEnableLoFiMode(
95 const net::URLRequest& url_request, 95 const net::URLRequest& url_request,
96 content::ResourceContext* resource_context) { 96 content::ResourceContext* resource_context) {
97 return false; 97 return false;
98 } 98 }
99 99
100 bool ResourceDispatcherHostDelegate::UsedDataReductionProxy(
101 const net::HostPortPair& proxy_server,
102 ResourceContext* resource_context) {
103 return false;
104 }
105
100 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { 106 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() {
101 } 107 }
102 108
103 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { 109 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() {
104 } 110 }
105 111
106 } // namespace content 112 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698