Home | History | Annotate | Download | only in translate
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_BROWSER_TRANSLATE_TRANSLATE_URL_UTIL_H_
      6 #define CHROME_BROWSER_TRANSLATE_TRANSLATE_URL_UTIL_H_
      7 
      8 #include "url/gurl.h"
      9 
     10 namespace TranslateURLUtil {
     11 
     12 // Appends Translate API Key as a part of query to a passed |url|, and returns
     13 // GURL instance.
     14 GURL AddApiKeyToUrl(const GURL& url);
     15 
     16 // Appends host locale parameter as a part of query to a passed |url|, and
     17 // returns GURL instance.
     18 GURL AddHostLocaleToUrl(const GURL& url);
     19 
     20 }  // namespace TranslateURLUtil
     21 
     22 #endif  // CHROME_BROWSER_TRANSLATE_TRANSLATE_URL_UTIL_H_
     23