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

Unified Diff: chrome/browser/tab_contents/tab_contents.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/tab_contents/tab_contents.h ('k') | chrome/browser/tab_contents/web_contents_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/tab_contents.cc
===================================================================
--- chrome/browser/tab_contents/tab_contents.cc (revision 35721)
+++ chrome/browser/tab_contents/tab_contents.cc (working copy)
@@ -369,6 +369,9 @@
UMA_HISTOGRAM_TIMES("Tab.Close",
base::TimeTicks::Now() - tab_close_start_time_);
}
+
+ if (cld_helper_.get())
+ cld_helper_->CancelLanguageDetection();
}
// static
@@ -637,6 +640,24 @@
delegate_->ActivateContents(this);
}
+void TabContents::PageLanguageDetected() {
+ DCHECK(cld_helper_.get());
+
+ NavigationEntry* entry = controller_.GetActiveEntry();
+ if (process()->id() == cld_helper_->renderer_process_id() &&
+ entry && entry->page_id() == cld_helper_->page_id()) {
+ entry->set_language(cld_helper_->language());
+ }
+
+ std::string lang = cld_helper_->language();
+ NotificationService::current()->Notify(
+ NotificationType::TAB_LANGUAGE_DETERMINED,
+ Source<RenderViewHost>(render_view_host()),
+ Details<std::string>(&lang));
+
+ cld_helper_ = NULL; // Release the CLD helper.
+}
+
void TabContents::ShowContents() {
if (render_widget_host_view())
render_widget_host_view()->DidBecomeSelected();
@@ -1076,10 +1097,6 @@
render_view_host()->StopFinding(clear_selection);
}
-void TabContents::GetPageLanguage() {
- render_view_host()->GetPageLanguage();
-}
-
void TabContents::OnSavePage() {
// If we can not save the page, try to download it.
if (!SavePackage::IsSavableContents(contents_mime_type())) {
@@ -1735,6 +1752,38 @@
delegate()->OnDidGetApplicationInfo(this, page_id);
}
+void TabContents::OnPageContents(const GURL& url,
+ int renderer_process_id,
+ int32 page_id,
+ const std::wstring& contents) {
+ // Don't index any https pages. People generally don't want their bank
+ // accounts, etc. indexed on their computer, especially since some of these
+ // things are not marked cachable.
+ // TODO(brettw) we may want to consider more elaborate heuristics such as
+ // the cachability of the page. We may also want to consider subframes (this
+ // test will still index subframes if the subframe is SSL).
+ if (!url.SchemeIsSecure()) {
+ Profile* p = profile();
+ if (p && !p->IsOffTheRecord()) {
+ HistoryService* hs = p->GetHistoryService(Profile::IMPLICIT_ACCESS);
+ if (hs)
+ hs->SetPageContents(url, contents);
+ }
+ }
+
+ // Detect the page language. The detection happens on the file thread.
+ // PageLanguageDetected() is called when the language has been detected.
+ if (cld_helper_.get()) {
+ // There is already a language detection in flight, cancel it to avoid
+ // having multiple PageLanguageDetected() notifications on this tab. (They
+ // would cause a crasher as cld_helper_ would be NULLed on the 1st
+ // notification).
+ cld_helper_->CancelLanguageDetection();
+ }
+ cld_helper_ = new CLDHelper(this, renderer_process_id, page_id, contents);
+ cld_helper_->DetectLanguage();
+}
+
void TabContents::DidStartProvisionalLoadForFrame(
RenderViewHost* render_view_host,
bool is_main_frame,
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.h ('k') | chrome/browser/tab_contents/web_contents_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698