| 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 d730d5d82225f732bab597f8e1ca48ef2b437952..73464768df211e97461cd47bf0b22084cca1ae71 100644
|
| --- a/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc
|
| +++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_settings_android.cc
|
| @@ -24,6 +24,7 @@
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h"
|
| #include "components/data_reduction_proxy/core/browser/data_usage_store.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event_store.h"
|
| +#include "components/data_reduction_proxy/core/common/data_reduction_proxy_headers.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_params.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.h"
|
| #include "jni/DataReductionProxySettings_jni.h"
|
| @@ -146,6 +147,14 @@ DataReductionProxySettingsAndroid::GetDailyReceivedContentLengths(
|
| env, data_reduction_proxy::prefs::kDailyHttpReceivedContentLength);
|
| }
|
|
|
| +ScopedJavaLocalRef<jstring>
|
| +DataReductionProxySettingsAndroid::GetDataReductionProxyPassThroughHeader(
|
| + JNIEnv* env,
|
| + const JavaParamRef<jobject>& obj) {
|
| + return ConvertUTF8ToJavaString(
|
| + env, data_reduction_proxy::chrome_proxy_pass_through_header());
|
| +}
|
| +
|
| jboolean DataReductionProxySettingsAndroid::IsDataReductionProxyUnreachable(
|
| JNIEnv* env,
|
| const JavaParamRef<jobject>& obj) {
|
|
|