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

Side by Side Diff: android_webview/browser/aw_browser_context.cc

Issue 665703002: Activate data reduction proxy after profile initialization is complete. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests. Created 6 years, 2 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 "android_webview/browser/aw_browser_context.h" 5 #include "android_webview/browser/aw_browser_context.h"
6 6
7 #include "android_webview/browser/aw_form_database_service.h" 7 #include "android_webview/browser/aw_form_database_service.h"
8 #include "android_webview/browser/aw_pref_store.h" 8 #include "android_webview/browser/aw_pref_store.h"
9 #include "android_webview/browser/aw_quota_manager_bridge.h" 9 #include "android_webview/browser/aw_quota_manager_bridge.h"
10 #include "android_webview/browser/aw_resource_context.h" 10 #include "android_webview/browser/aw_resource_context.h"
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 pref_service_factory.set_user_prefs(make_scoped_refptr(new AwPrefStore())); 204 pref_service_factory.set_user_prefs(make_scoped_refptr(new AwPrefStore()));
205 pref_service_factory.set_read_error_callback(base::Bind(&HandleReadError)); 205 pref_service_factory.set_read_error_callback(base::Bind(&HandleReadError));
206 user_pref_service_ = pref_service_factory.Create(pref_registry).Pass(); 206 user_pref_service_ = pref_service_factory.Create(pref_registry).Pass();
207 207
208 user_prefs::UserPrefs::Set(this, user_pref_service_.get()); 208 user_prefs::UserPrefs::Set(this, user_pref_service_.get());
209 209
210 if (data_reduction_proxy_settings_.get()) { 210 if (data_reduction_proxy_settings_.get()) {
211 data_reduction_proxy_settings_->InitDataReductionProxySettings( 211 data_reduction_proxy_settings_->InitDataReductionProxySettings(
212 user_pref_service_.get(), 212 user_pref_service_.get(),
213 GetRequestContext()); 213 GetRequestContext());
214 214 data_reduction_proxy_settings_->MaybeActivateDataReductionProxy(true);
215 data_reduction_proxy_settings_->SetDataReductionProxyEnabled( 215 data_reduction_proxy_settings_->SetDataReductionProxyEnabled(
216 data_reduction_proxy_enabled_); 216 data_reduction_proxy_enabled_);
217 } 217 }
218 } 218 }
219 219
220 base::FilePath AwBrowserContext::GetPath() const { 220 base::FilePath AwBrowserContext::GetPath() const {
221 return context_storage_path_; 221 return context_storage_path_;
222 } 222 }
223 223
224 bool AwBrowserContext::IsOffTheRecord() const { 224 bool AwBrowserContext::IsOffTheRecord() const {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 287
288 void AwBrowserContext::RebuildTable( 288 void AwBrowserContext::RebuildTable(
289 const scoped_refptr<URLEnumerator>& enumerator) { 289 const scoped_refptr<URLEnumerator>& enumerator) {
290 // Android WebView rebuilds from WebChromeClient.getVisitedHistory. The client 290 // Android WebView rebuilds from WebChromeClient.getVisitedHistory. The client
291 // can change in the lifetime of this WebView and may not yet be set here. 291 // can change in the lifetime of this WebView and may not yet be set here.
292 // Therefore this initialization path is not used. 292 // Therefore this initialization path is not used.
293 enumerator->OnComplete(true); 293 enumerator->OnComplete(true);
294 } 294 }
295 295
296 } // namespace android_webview 296 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698