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

Unified Diff: chrome/browser/translate/translate_url_util.cc

Issue 15317007: Translate: split supporting language list handling to TranslateLanguageList (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reviewed Created 7 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 | « chrome/browser/translate/translate_url_util.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/translate/translate_url_util.cc
diff --git a/chrome/browser/translate/translate_url_util.cc b/chrome/browser/translate/translate_url_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..03718e7812415f311ba33294a738920191bb3768
--- /dev/null
+++ b/chrome/browser/translate/translate_url_util.cc
@@ -0,0 +1,37 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/translate/translate_url_util.h"
+
+#include "chrome/browser/browser_process.h"
+#include "chrome/browser/translate/translate_manager.h"
+#include "google_apis/google_api_keys.h"
+#include "net/base/url_util.h"
+
+namespace {
+
+// Used in all translate URLs to specify API Key.
+const char kApiKeyName[] = "key";
+
+// Used in kTranslateScriptURL and kLanguageListFetchURL to specify the
+// application locale.
+const char kHostLocaleQueryName[] = "hl";
+
+} // namespace
+
+namespace TranslateURLUtil {
+
+GURL AddApiKeyToUrl(const GURL& url) {
+ return net::AppendQueryParameter(url, kApiKeyName, google_apis::GetAPIKey());
+}
+
+GURL AddHostLocaleToUrl(const GURL& url) {
+ return net::AppendQueryParameter(
+ url,
+ kHostLocaleQueryName,
+ TranslateManager::GetLanguageCode(
+ g_browser_process->GetApplicationLocale()));
+}
+
+} // namespace TranslateURLUtil
« no previous file with comments | « chrome/browser/translate/translate_url_util.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698