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

Unified Diff: components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.cc

Issue 830503004: Data Reduction Proxy blocking page and resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interstitalStep1
Patch Set: Test resources fix Created 5 years, 10 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
Index: components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.cc
diff --git a/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.cc b/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.cc
index 9476fcd024c2d4e00cd55259351c22544dfa8b61..c453aac0b0b3a7e897fd800dea3fdcb0631857a1 100644
--- a/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.cc
+++ b/components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.cc
@@ -13,10 +13,12 @@ ContentDataReductionProxyDebugUIService::
ContentDataReductionProxyDebugUIService(
const DataReductionProxyNetworkDelegate::ProxyConfigGetter& getter,
const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner,
- const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner)
+ const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner,
+ const std::string& app_locale)
bengr 2015/02/05 01:30:08 #include <string>
megjablon 2015/02/13 01:48:07 Done.
: proxy_config_getter_(getter) {
ui_manager_ = new DataReductionProxyDebugUIManager(ui_task_runner,
- io_task_runner);
+ io_task_runner,
+ app_locale);
}
ContentDataReductionProxyDebugUIService::

Powered by Google App Engine
This is Rietveld 408576698