diff options
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/chrome_tests.gypi | 2 | ||||
-rwxr-xr-x | chrome/common/extensions/api/extension_api.json | 2 | ||||
-rw-r--r-- | chrome/common/extensions/docs/tabs.html | 3 | ||||
-rw-r--r-- | chrome/renderer/DEPS | 2 | ||||
-rw-r--r-- | chrome/renderer/render_view.cc | 2 | ||||
-rw-r--r-- | chrome/renderer/render_view.h | 13 |
6 files changed, 9 insertions, 15 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index 066f627..10d4e45 100755 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -875,7 +875,7 @@ 'test/v8_unit_test.cc', 'test/v8_unit_test.h', 'tools/convert_dict/convert_dict_unittest.cc', - '../third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/compact_lang_det_unittest_small.cc', + '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unittest_small.cc', ], 'conditions': [ ['chromeos==0', { diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 75f8b9ca..00ef4ce 100755 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -862,7 +862,7 @@ { "type": "string", "name": "language", - "description": "An ISO language code such as <code>en</code> or <code>fr</code>. For a complete list of languages supported by this method, see the second column of <a href='http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/bar/toolbar/cld/i18n/languages/internal/languages.cc'>kLanguageInfoTable</a>." + "description": "An ISO language code such as <code>en</code> or <code>fr</code>. For a complete list of languages supported by this method, see <a href='http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/languages/internal/languages.cc'>kLanguageInfoTable</a>. The 2nd to 4th columns will be checked and the first non-NULL value will be returned except for Simplified Chinese for which zh-CN will be returned. For an unknown language, <code>und</code> will be returned." } ] } diff --git a/chrome/common/extensions/docs/tabs.html b/chrome/common/extensions/docs/tabs.html index cde0df3..82da463 100644 --- a/chrome/common/extensions/docs/tabs.html +++ b/chrome/common/extensions/docs/tabs.html @@ -1248,8 +1248,7 @@ For other examples and for help in viewing the source code, see <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>An ISO language code such as <code>en</code> or <code>fr</code>. For a complete list of languages supported by this method, see the second column of <a href="http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/bar/toolbar/cld/i18n/languages/internal/languages.cc">kLanguageInfoTable</a>.</dd> - + <dd>An ISO language code such as <code>en</code> or <code>fr</code>. For a complete list of languages supported by this method, see <a href='http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/languages/internal/languages.cc'>kLanguageInfoTable</a>. The 2nd to 4th columns will be checked and the first non-NULL value will be returned except for Simplified Chinese for which zh-CN will be returned. For an unknown language, <code>und</code> will be returned.</dd> <!-- OBJECT PROPERTIES --> <dd style="display: none; "> <dl> diff --git a/chrome/renderer/DEPS b/chrome/renderer/DEPS index 35f9fb6..55936c2 100644 --- a/chrome/renderer/DEPS +++ b/chrome/renderer/DEPS @@ -12,7 +12,7 @@ include_rules = [ "+webkit/glue", "+webkit/glue/plugins", "+v8/include", - "+third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/win", + "+third_party/cld/encodings/compact_lang_det/win", "+third_party/npapi/bindings", "+third_party/sqlite/preprocessed", "+third_party/tcmalloc", diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc index 872c518..cf74f81 100644 --- a/chrome/renderer/render_view.cc +++ b/chrome/renderer/render_view.cc @@ -67,7 +67,7 @@ #include "net/base/net_errors.h" #include "skia/ext/bitmap_platform_device.h" #include "skia/ext/image_operations.h" -#include "third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/win/cld_unicodetext.h" +#include "third_party/cld/encodings/compact_lang_det/win/cld_unicodetext.h" #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityCache.h" #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityObject.h" #include "third_party/WebKit/WebKit/chromium/public/WebCString.h" diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h index c09bf32..7245df1 100644 --- a/chrome/renderer/render_view.h +++ b/chrome/renderer/render_view.h @@ -458,15 +458,10 @@ class RenderView : public RenderWidget, PageTranslator* page_translator() const { return page_translator_.get(); } - // Returns the ISO 639 language code of the current page (e.g. en, fr, zh). - // If ISO 639-1 code is not available for the language, ISO 639-2 3-letter code - // will be returned (e.g. kha for Khasi and und for undtermined). For traditional - // Chinse, 'zh-TW' will be returned while for simplified Chinse, 'zh' will be - // returned. - // TODO(jungshik): Make it return 'he' (the correct ISO 639 code for Hebrew) - // instead of the obsolete 'iw'. Perhaps, it's also better to return 'zh-Hans' - // (or 'zh-CN') for Simplified Chinese instead of 'zh' to be aligned with - // 'zh-TW' for Traditional Chinse. + // Returns the ISO 639 language code of the current page (e.g. en, fr). + // If ISO 639-1 code is not available for the language, ISO 639-2 3-letter + // code will be returned (e.g. fil for Filipino and und for undtermined). For + // traditional and simplified Chinse, 'zh-TW' and 'zh-CN' will be returned. std::string DetectLanguage(); #if defined(OS_MACOSX) |