Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(723)

Unified Diff: chrome/browser/cld_helper.cc

Issue 504051: Relanding the language detection. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/cld_helper.h ('k') | chrome/browser/extensions/extension_tabs_module.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cld_helper.cc
===================================================================
--- chrome/browser/cld_helper.cc (revision 0)
+++ chrome/browser/cld_helper.cc (revision 0)
@@ -0,0 +1,70 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/cld_helper.h"
+
+#include "chrome/browser/chrome_thread.h"
+#include "chrome/browser/tab_contents/tab_contents.h"
+#include "chrome/common/notification_service.h"
+
+#if defined(OS_WIN)
+// TODO(port): The compact language detection library works only for Windows.
+#include "third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/win/cld_unicodetext.h"
+#endif
+
+CLDHelper::CLDHelper(TabContents* tab_contents, int renderer_process_id,
+ int page_id, const std::wstring& page_content)
+ : tab_contents_(tab_contents),
+ renderer_process_id_(renderer_process_id),
+ page_id_(page_id),
+ page_content_(page_content) {
+}
+
+void CLDHelper::DetectLanguage() {
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+
+ // Balanced in DetectionDone.
+ AddRef();
+
+ // Do the actual work on the file thread.
+ ChromeThread::PostTask(ChromeThread::FILE, FROM_HERE,
+ NewRunnableMethod(this, &CLDHelper::DoDetectLanguage));
+}
+
+void CLDHelper::CancelLanguageDetection() {
+ tab_contents_ = NULL;
+}
+
+void CLDHelper::DoDetectLanguage() {
+ if (!tab_contents_) {
+ // If we have already been canceled, no need to perform the detection.
+ Release(); // Balance AddRef from DetectLanguage().
+ return;
+ }
+
+#if defined(OS_WIN) // Only for windows.
+ int num_languages = 0;
+ bool is_reliable = false;
+
+ const char* language_iso_code = LanguageCodeISO639_1(
+ DetectLanguageOfUnicodeText(NULL, page_content_.c_str(), true,
+ &is_reliable, &num_languages, NULL));
+ language_ = language_iso_code;
+#else
+ // TODO(jcampan): port the compact language detection library.
+ NOTIMPLEMENTED();
+#endif
+
+ // Work is done, notify the RenderViewHost on the UI thread.
+ ChromeThread::PostTask(ChromeThread::UI, FROM_HERE,
+ NewRunnableMethod(this, &CLDHelper::DetectionDone));
+}
+
+void CLDHelper::DetectionDone() {
+ if (tab_contents_)
+ tab_contents_->PageLanguageDetected();
+
+ // Remove the ref we added to ourself in DetectLanguage().
+ Release();
+}
Property changes on: chrome\browser\cld_helper.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/cld_helper.h ('k') | chrome/browser/extensions/extension_tabs_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698