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

Unified Diff: components/web_resource/web_resource_service.cc

Issue 900633002: Add missing locale parameter to promo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_resource/web_resource_service.cc
diff --git a/components/web_resource/web_resource_service.cc b/components/web_resource/web_resource_service.cc
index 6e9c589f777d29c8ffd6ca61f16420e475381031..40225b8c6bf755e9d3cc484e3e1924fc01048a3d 100644
--- a/components/web_resource/web_resource_service.cc
+++ b/components/web_resource/web_resource_service.cc
@@ -107,9 +107,9 @@ void WebResourceService::StartFetch() {
GURL web_resource_server =
application_locale_.empty()
- ? google_util::AppendGoogleLocaleParam(web_resource_server_,
- application_locale_)
- : web_resource_server_;
+ ? web_resource_server_
+ : google_util::AppendGoogleLocaleParam(web_resource_server_,
+ application_locale_);
DVLOG(1) << "WebResourceService StartFetch " << web_resource_server;
url_fetcher_.reset(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698