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

Side by Side Diff: chrome/browser/renderer_host/render_view_host.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "chrome/browser/renderer_host/render_view_host.h" 5 #include "chrome/browser/renderer_host/render_view_host.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 28 matching lines...) Expand all
39 #include "chrome/common/thumbnail_score.h" 39 #include "chrome/common/thumbnail_score.h"
40 #include "chrome/common/url_constants.h" 40 #include "chrome/common/url_constants.h"
41 #include "net/base/net_util.h" 41 #include "net/base/net_util.h"
42 #include "third_party/skia/include/core/SkBitmap.h" 42 #include "third_party/skia/include/core/SkBitmap.h"
43 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" 43 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h"
44 #include "webkit/glue/form_field_values.h" 44 #include "webkit/glue/form_field_values.h"
45 45
46 #if defined(OS_WIN) 46 #if defined(OS_WIN)
47 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288. 47 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288.
48 #include "chrome/browser/browser_accessibility_manager.h" 48 #include "chrome/browser/browser_accessibility_manager.h"
49 // TODO(port): The compact language detection library works only for Windows.
50 #include "third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/win/cl d_unicodetext.h"
51 #endif 49 #endif
52 50
53 using base::TimeDelta; 51 using base::TimeDelta;
54 using webkit_glue::PasswordFormDomManager; 52 using webkit_glue::PasswordFormDomManager;
55 using WebKit::WebConsoleMessage; 53 using WebKit::WebConsoleMessage;
56 using WebKit::WebDragOperation; 54 using WebKit::WebDragOperation;
57 using WebKit::WebDragOperationNone; 55 using WebKit::WebDragOperationNone;
58 using WebKit::WebDragOperationsMask; 56 using WebKit::WebDragOperationsMask;
59 using WebKit::WebFindOptions; 57 using WebKit::WebFindOptions;
60 using WebKit::WebInputEvent; 58 using WebKit::WebInputEvent;
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 Send(new ViewMsg_Find(routing_id(), request_id, search_text, options)); 414 Send(new ViewMsg_Find(routing_id(), request_id, search_text, options));
417 415
418 // This call is asynchronous and returns immediately. 416 // This call is asynchronous and returns immediately.
419 // The result of the search is sent as a notification message by the renderer. 417 // The result of the search is sent as a notification message by the renderer.
420 } 418 }
421 419
422 void RenderViewHost::StopFinding(bool clear_selection) { 420 void RenderViewHost::StopFinding(bool clear_selection) {
423 Send(new ViewMsg_StopFinding(routing_id(), clear_selection)); 421 Send(new ViewMsg_StopFinding(routing_id(), clear_selection));
424 } 422 }
425 423
426 void RenderViewHost::GetPageLanguage() {
427 Send(new ViewMsg_DeterminePageText(routing_id()));
428 }
429
430 void RenderViewHost::Zoom(PageZoom::Function function) { 424 void RenderViewHost::Zoom(PageZoom::Function function) {
431 Send(new ViewMsg_Zoom(routing_id(), function)); 425 Send(new ViewMsg_Zoom(routing_id(), function));
432 } 426 }
433 427
434 void RenderViewHost::SetPageEncoding(const std::string& encoding_name) { 428 void RenderViewHost::SetPageEncoding(const std::string& encoding_name) {
435 Send(new ViewMsg_SetPageEncoding(routing_id(), encoding_name)); 429 Send(new ViewMsg_SetPageEncoding(routing_id(), encoding_name));
436 } 430 }
437 431
438 void RenderViewHost::ResetPageEncodingToDefault() { 432 void RenderViewHost::ResetPageEncodingToDefault() {
439 Send(new ViewMsg_ResetPageEncodingToDefault(routing_id())); 433 Send(new ViewMsg_ResetPageEncodingToDefault(routing_id()));
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 OnMsgDidDisplayInsecureContent) 746 OnMsgDidDisplayInsecureContent)
753 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRunInsecureContent, 747 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRunInsecureContent,
754 OnMsgDidRunInsecureContent) 748 OnMsgDidRunInsecureContent)
755 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad, 749 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad,
756 OnMsgDidRedirectProvisionalLoad) 750 OnMsgDidRedirectProvisionalLoad)
757 IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame, 751 IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame,
758 OnMsgDidStartProvisionalLoadForFrame) 752 OnMsgDidStartProvisionalLoadForFrame)
759 IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError, 753 IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError,
760 OnMsgDidFailProvisionalLoadWithError) 754 OnMsgDidFailProvisionalLoadWithError)
761 IPC_MESSAGE_HANDLER(ViewHostMsg_Find_Reply, OnMsgFindReply) 755 IPC_MESSAGE_HANDLER(ViewHostMsg_Find_Reply, OnMsgFindReply)
762 IPC_MESSAGE_HANDLER(ViewMsg_DeterminePageText_Reply,
763 OnDeterminePageTextReply)
764 IPC_MESSAGE_HANDLER(ViewMsg_ExecuteCodeFinished, 756 IPC_MESSAGE_HANDLER(ViewMsg_ExecuteCodeFinished,
765 OnExecuteCodeFinished) 757 OnExecuteCodeFinished)
766 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateFavIconURL, OnMsgUpdateFavIconURL) 758 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateFavIconURL, OnMsgUpdateFavIconURL)
767 IPC_MESSAGE_HANDLER(ViewHostMsg_DidDownloadFavIcon, OnMsgDidDownloadFavIcon) 759 IPC_MESSAGE_HANDLER(ViewHostMsg_DidDownloadFavIcon, OnMsgDidDownloadFavIcon)
768 IPC_MESSAGE_HANDLER(ViewHostMsg_ContextMenu, OnMsgContextMenu) 760 IPC_MESSAGE_HANDLER(ViewHostMsg_ContextMenu, OnMsgContextMenu)
769 IPC_MESSAGE_HANDLER(ViewHostMsg_OpenURL, OnMsgOpenURL) 761 IPC_MESSAGE_HANDLER(ViewHostMsg_OpenURL, OnMsgOpenURL)
770 IPC_MESSAGE_HANDLER(ViewHostMsg_DidContentsPreferredSizeChange, 762 IPC_MESSAGE_HANDLER(ViewHostMsg_DidContentsPreferredSizeChange,
771 OnMsgDidContentsPreferredSizeChange) 763 OnMsgDidContentsPreferredSizeChange)
772 IPC_MESSAGE_HANDLER(ViewHostMsg_DomOperationResponse, 764 IPC_MESSAGE_HANDLER(ViewHostMsg_DomOperationResponse,
773 OnMsgDomOperationResponse) 765 OnMsgDomOperationResponse)
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 OnCancelDesktopNotification) 829 OnCancelDesktopNotification)
838 IPC_MESSAGE_HANDLER(ViewHostMsg_RequestNotificationPermission, 830 IPC_MESSAGE_HANDLER(ViewHostMsg_RequestNotificationPermission,
839 OnRequestNotificationPermission) 831 OnRequestNotificationPermission)
840 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionRequest, OnExtensionRequest) 832 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionRequest, OnExtensionRequest)
841 IPC_MESSAGE_HANDLER(ViewHostMsg_SelectionChanged, OnMsgSelectionChanged) 833 IPC_MESSAGE_HANDLER(ViewHostMsg_SelectionChanged, OnMsgSelectionChanged)
842 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionPostMessage, 834 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionPostMessage,
843 OnExtensionPostMessage) 835 OnExtensionPostMessage)
844 IPC_MESSAGE_HANDLER(ViewHostMsg_AccessibilityFocusChange, 836 IPC_MESSAGE_HANDLER(ViewHostMsg_AccessibilityFocusChange,
845 OnAccessibilityFocusChange) 837 OnAccessibilityFocusChange)
846 IPC_MESSAGE_HANDLER(ViewHostMsg_OnCSSInserted, OnCSSInserted) 838 IPC_MESSAGE_HANDLER(ViewHostMsg_OnCSSInserted, OnCSSInserted)
839 IPC_MESSAGE_HANDLER(ViewHostMsg_PageContents, OnPageContents)
847 // Have the super handle all other messages. 840 // Have the super handle all other messages.
848 IPC_MESSAGE_UNHANDLED(RenderWidgetHost::OnMessageReceived(msg)) 841 IPC_MESSAGE_UNHANDLED(RenderWidgetHost::OnMessageReceived(msg))
849 IPC_END_MESSAGE_MAP_EX() 842 IPC_END_MESSAGE_MAP_EX()
850 843
851 if (!msg_is_ok) { 844 if (!msg_is_ok) {
852 // The message had a handler, but its de-serialization failed. 845 // The message had a handler, but its de-serialization failed.
853 // Kill the renderer. 846 // Kill the renderer.
854 process()->ReceivedBadMessage(msg.type()); 847 process()->ReceivedBadMessage(msg.type());
855 } 848 }
856 } 849 }
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 1133
1141 // Send a notification to the renderer that we are ready to receive more 1134 // Send a notification to the renderer that we are ready to receive more
1142 // results from the scoping effort of the Find operation. The FindInPage 1135 // results from the scoping effort of the Find operation. The FindInPage
1143 // scoping is asynchronous and periodically sends results back up to the 1136 // scoping is asynchronous and periodically sends results back up to the
1144 // browser using IPC. In an effort to not spam the browser we have the 1137 // browser using IPC. In an effort to not spam the browser we have the
1145 // browser send an ACK for each FindReply message and have the renderer 1138 // browser send an ACK for each FindReply message and have the renderer
1146 // queue up the latest status message while waiting for this ACK. 1139 // queue up the latest status message while waiting for this ACK.
1147 Send(new ViewMsg_FindReplyACK(routing_id())); 1140 Send(new ViewMsg_FindReplyACK(routing_id()));
1148 } 1141 }
1149 1142
1150 void RenderViewHost::OnDeterminePageTextReply(
1151 const std::wstring& page_text) {
1152 #if defined(OS_WIN) // Only for windows.
1153 int num_languages = 0;
1154 bool is_reliable = false;
1155 const char* language_iso_code = LanguageCodeISO639_1(
1156 DetectLanguageOfUnicodeText(NULL, page_text.c_str(), true, &is_reliable,
1157 &num_languages, NULL));
1158 std::string language(language_iso_code);
1159 NotificationService::current()->Notify(
1160 NotificationType::TAB_LANGUAGE_DETERMINED,
1161 Source<RenderViewHost>(this),
1162 Details<std::string>(&language));
1163 #endif
1164 }
1165
1166 void RenderViewHost::OnExecuteCodeFinished(int request_id, bool success) { 1143 void RenderViewHost::OnExecuteCodeFinished(int request_id, bool success) {
1167 std::pair<int, bool> result_details(request_id, success); 1144 std::pair<int, bool> result_details(request_id, success);
1168 NotificationService::current()->Notify( 1145 NotificationService::current()->Notify(
1169 NotificationType::TAB_CODE_EXECUTED, 1146 NotificationType::TAB_CODE_EXECUTED,
1170 NotificationService::AllSources(), 1147 NotificationService::AllSources(),
1171 Details<std::pair<int, bool> >(&result_details)); 1148 Details<std::pair<int, bool> >(&result_details));
1172 } 1149 }
1173 1150
1174 void RenderViewHost::OnMsgUpdateFavIconURL(int32 page_id, 1151 void RenderViewHost::OnMsgUpdateFavIconURL(int32 page_id,
1175 const GURL& icon_url) { 1152 const GURL& icon_url) {
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
1776 BrowserAccessibilityManager::GetInstance()->ChangeAccessibilityFocus( 1753 BrowserAccessibilityManager::GetInstance()->ChangeAccessibilityFocus(
1777 acc_obj_id, process()->id(), routing_id()); 1754 acc_obj_id, process()->id(), routing_id());
1778 #else 1755 #else
1779 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288. 1756 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288.
1780 #endif 1757 #endif
1781 } 1758 }
1782 1759
1783 void RenderViewHost::OnCSSInserted() { 1760 void RenderViewHost::OnCSSInserted() {
1784 delegate_->DidInsertCSS(); 1761 delegate_->DidInsertCSS();
1785 } 1762 }
1763
1764 void RenderViewHost::OnPageContents(const GURL& url,
1765 int32 page_id,
1766 const std::wstring& contents) {
1767 RenderViewHostDelegate::BrowserIntegration* integration_delegate =
1768 delegate_->GetBrowserIntegrationDelegate();
1769 if (!integration_delegate)
1770 return;
1771 integration_delegate->OnPageContents(url, process()->id(), page_id, contents);
1772 }
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.h ('k') | chrome/browser/renderer_host/render_view_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698