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

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 5 years, 10 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
Index: chrome/browser/profiles/profile_io_data.h
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index 297889bcaad6f5dce8c9d4afb3cb56fa47b976f8..b2af7e93e6d4d6f1c3f855e7519307f5fb4f28d6 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -257,6 +257,11 @@ class ProfileIOData {
bool IsDataReductionProxyEnabled() const;
+ data_reduction_proxy::DataReductionProxyIOData*
+ data_reduction_proxy_io_data() const {
+ return data_reduction_proxy_io_data_.get();
+ }
+
protected:
// A URLRequestContext for media that owns its HTTP factory, to ensure
// it is deleted.
@@ -373,11 +378,6 @@ class ProfileIOData {
scoped_ptr<data_reduction_proxy::DataReductionProxyIOData>
data_reduction_proxy_io_data) const;
- data_reduction_proxy::DataReductionProxyIOData*
- data_reduction_proxy_io_data() const {
- return data_reduction_proxy_io_data_.get();
- }
-
net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const {
return fraudulent_certificate_reporter_.get();
}

Powered by Google App Engine
This is Rietveld 408576698