Index: android_webview/native/aw_contents_statics.cc |
diff --git a/android_webview/native/aw_contents_statics.cc b/android_webview/native/aw_contents_statics.cc |
index e09fcb8c61dd7c9319d0ff6a7dce9076accf31bf..48e048fcf80b35a0646a79ce0bd35c3c4627c295 100644 |
--- a/android_webview/native/aw_contents_statics.cc |
+++ b/android_webview/native/aw_contents_statics.cc |
@@ -10,7 +10,7 @@ |
#include "base/android/jni_string.h" |
#include "base/android/scoped_java_ref.h" |
#include "base/callback.h" |
-#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.h" |
+#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_request_options.h" |
#include "content/public/browser/android/synchronous_compositor.h" |
#include "content/public/browser/browser_thread.h" |
#include "content/public/common/url_constants.h" |
@@ -21,7 +21,7 @@ using base::android::AttachCurrentThread; |
using base::android::ConvertJavaStringToUTF8; |
using base::android::ScopedJavaGlobalRef; |
using content::BrowserThread; |
-using data_reduction_proxy::DataReductionProxyAuthRequestHandler; |
+using data_reduction_proxy::DataReductionProxyRequestOptions; |
sgurun-gerrit only
2015/01/27 23:51:51
do we need this anymore?
megjablon
2015/01/31 00:44:32
Removed.
|
namespace android_webview { |
@@ -60,13 +60,13 @@ void SetDataReductionProxyKey(JNIEnv* env, jclass, jstring key) { |
// The following call to GetRequestContext() could possibly be the first such |
// call, which means AwURLRequestContextGetter::InitializeURLRequestContext |
// will be called on IO thread as a result. InitializeURLRequestContext() |
- // will initialize DataReductionProxyAuthRequestHandler. |
+ // will initialize DataReductionProxyRequestOptions. |
AwURLRequestContextGetter* aw_url_request_context_getter = |
static_cast<AwURLRequestContextGetter*>( |
browser_context->GetRequestContext()); |
// This PostTask has to be called after GetRequestContext, because SetKeyOnIO |
- // needs a valid DataReductionProxyAuthRequestHandler object. |
+ // needs a valid DataReductionProxyRequestOptions object. |
BrowserThread::PostTask(BrowserThread::IO, |
FROM_HERE, |
base::Bind(&AwURLRequestContextGetter::SetKeyOnIO, |