OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_TRANSLATE_LANGUAGE_DETECTION_LANGUAGE_DETECTION_UTIL_H_ | 5 #ifndef COMPONENTS_TRANSLATE_CORE_LANGUAGE_DETECTION_LANGUAGE_DETECTION_UTIL_H_ |
6 #define COMPONENTS_TRANSLATE_LANGUAGE_DETECTION_LANGUAGE_DETECTION_UTIL_H_ | 6 #define COMPONENTS_TRANSLATE_CORE_LANGUAGE_DETECTION_LANGUAGE_DETECTION_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 | 11 |
12 namespace translate { | 12 namespace translate { |
13 | 13 |
14 // Determines content page language from Content-Language code and contents. | 14 // Determines content page language from Content-Language code and contents. |
15 std::string DeterminePageLanguage(const std::string& code, | 15 std::string DeterminePageLanguage(const std::string& code, |
16 const std::string& html_lang, | 16 const std::string& html_lang, |
(...skipping 17 matching lines...) Expand all Loading... |
34 const std::string& cld_language); | 34 const std::string& cld_language); |
35 | 35 |
36 // Checks if languages pair is one of well-known pairs of wrong server | 36 // Checks if languages pair is one of well-known pairs of wrong server |
37 // configuration. | 37 // configuration. |
38 // Called only by tests. | 38 // Called only by tests. |
39 bool MaybeServerWrongConfiguration(const std::string& page_language, | 39 bool MaybeServerWrongConfiguration(const std::string& page_language, |
40 const std::string& cld_language); | 40 const std::string& cld_language); |
41 | 41 |
42 } // namespace translate | 42 } // namespace translate |
43 | 43 |
44 #endif // COMPONENTS_TRANSLATE_LANGUAGE_DETECTION_LANGUAGE_DETECTION_UTIL_H_ | 44 #endif // COMPONENTS_TRANSLATE_CORE_LANGUAGE_DETECTION_LANGUAGE_DETECTION_UTIL_
H_ |
OLD | NEW |