Home | History | Annotate | Download | only in browser
      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 COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_URL_UTIL_H_
      6 #define COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_URL_UTIL_H_
      7 
      8 #include "url/gurl.h"
      9 
     10 namespace translate {
     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 translate
     21 
     22 #endif  // COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_URL_UTIL_H_
     23