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_COMMON_TRANSLATE_UTIL_H_ 6 #define COMPONENTS_TRANSLATE_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. 24 GURL GetTranslateSecurityOrigin(); 25 26 } // namespace translate 27 28 #endif // COMPONENTS_TRANSLATE_COMMON_TRANSLATE_UTIL_H_ 29