1 // Copyright 2014 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_COMMON_TRANSLATE_UTIL_H_ 6 #define COMPONENTS_TRANSLATE_CORE_COMMON_TRANSLATE_UTIL_H_ 7 8 #include <string> 9 10 class GURL; 11 12 namespace translate { 13 14 // Isolated world sets following security-origin by default. 15 extern const char kSecurityOrigin[]; 16 17 // Converts language code synonym to use at Translate server. 18 void ToTranslateLanguageSynonym(std::string* language); 19 20 // Converts language code synonym to use at Chrome internal. 21 void ToChromeLanguageSynonym(std::string* language); 22 23 // Get Security origin with which Translate runs. This is used both for 24 // language checks and to obtain the list of available languages. 25 GURL GetTranslateSecurityOrigin(); 26 27 } // namespace translate 28 29 #endif // COMPONENTS_TRANSLATE_CORE_COMMON_TRANSLATE_UTIL_H_ 30