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

Unified Diff: trunk/src/android_webview/native/aw_contents_statics.cc

Issue 307013003: Revert 273810 "Added alternative configuration for the data redu..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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 | « trunk/src/android_webview/browser/net/aw_url_request_context_getter.cc ('k') | trunk/src/build/common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/android_webview/native/aw_contents_statics.cc
===================================================================
--- trunk/src/android_webview/native/aw_contents_statics.cc (revision 273823)
+++ trunk/src/android_webview/native/aw_contents_statics.cc (working copy)
@@ -54,8 +54,8 @@
DCHECK(browser_context);
DataReductionProxySettings* drp_settings =
browser_context->GetDataReductionProxySettings();
- if (drp_settings)
- drp_settings->params()->set_key(ConvertJavaStringToUTF8(env, key));
+ DCHECK(drp_settings);
+ drp_settings->set_key(ConvertJavaStringToUTF8(env, key));
}
// static
« no previous file with comments | « trunk/src/android_webview/browser/net/aw_url_request_context_getter.cc ('k') | trunk/src/build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698