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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 378253002: Fix translate namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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: chrome/browser/chrome_browser_main.cc
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index f8f8b998e2176b5015e844f716d89357aa5a54bd..4affaaf4b1fdb3a006c1f53d7bbfd1f3d2282fbb 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -1460,7 +1460,8 @@ int ChromeBrowserMainParts::PreMainMessageLoopRunImpl() {
variations_service->set_policy_pref_service(profile_->GetPrefs());
variations_service->StartRepeatedVariationsSeedFetch();
}
- TranslateDownloadManager::RequestLanguageList(profile_->GetPrefs());
+ translate::TranslateDownloadManager::RequestLanguageList(
+ profile_->GetPrefs());
#else
// Most general initialization is behind us, but opening a
@@ -1526,7 +1527,8 @@ int ChromeBrowserMainParts::PreMainMessageLoopRunImpl() {
#endif
}
- TranslateDownloadManager::RequestLanguageList(profile_->GetPrefs());
+ translate::TranslateDownloadManager::RequestLanguageList(
+ profile_->GetPrefs());
}
run_message_loop_ = true;

Powered by Google App Engine
This is Rietveld 408576698