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

Unified Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc

Issue 279633003: Use non-static set_key interface on DataReductionProxySettings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp Created 6 years, 7 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 | « build/common.gypi ('k') | chrome/browser/profiles/profile_impl_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc
diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc
index f6d957cc8b995ec911180ca529c0df545828ad5d..7cba6e378ad6d4cc9e4953e085e25e16a9892143 100644
--- a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc
+++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc
@@ -62,7 +62,7 @@ const char kEnabled[] = "Enabled";
DataReductionProxySettingsAndroid::DataReductionProxySettingsAndroid(
JNIEnv* env, jobject obj) : DataReductionProxySettings() {
#if defined(SPDY_PROXY_AUTH_VALUE)
- SetKey(SPDY_PROXY_AUTH_VALUE);
+ set_key(SPDY_PROXY_AUTH_VALUE);
#endif
SetAllowed(IsIncludedInFieldTrialOrFlags());
SetPromoAllowed(base::FieldTrialList::FindFullName(
@@ -71,7 +71,7 @@ DataReductionProxySettingsAndroid::DataReductionProxySettingsAndroid(
DataReductionProxySettingsAndroid::DataReductionProxySettingsAndroid() {
#if defined(SPDY_PROXY_AUTH_VALUE)
- SetKey(SPDY_PROXY_AUTH_VALUE);
+ set_key(SPDY_PROXY_AUTH_VALUE);
#endif
}
« no previous file with comments | « build/common.gypi ('k') | chrome/browser/profiles/profile_impl_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698