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:: |