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

Side by Side Diff: chrome/browser/renderer_host/render_view_host.cc

Issue 523149: Revert 35735 - Relanding the language detection code.... (Closed) Base URL: svn://svn.chromium.org/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"
49 #endif 51 #endif
50 52
51 using base::TimeDelta; 53 using base::TimeDelta;
52 using webkit_glue::PasswordFormDomManager; 54 using webkit_glue::PasswordFormDomManager;
53 using WebKit::WebConsoleMessage; 55 using WebKit::WebConsoleMessage;
54 using WebKit::WebDragOperation; 56 using WebKit::WebDragOperation;
55 using WebKit::WebDragOperationNone; 57 using WebKit::WebDragOperationNone;
56 using WebKit::WebDragOperationsMask; 58 using WebKit::WebDragOperationsMask;
57 using WebKit::WebFindOptions; 59 using WebKit::WebFindOptions;
58 using WebKit::WebInputEvent; 60 using WebKit::WebInputEvent;
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 Send(new ViewMsg_Find(routing_id(), request_id, search_text, options)); 416 Send(new ViewMsg_Find(routing_id(), request_id, search_text, options));
415 417
416 // This call is asynchronous and returns immediately. 418 // This call is asynchronous and returns immediately.
417 // The result of the search is sent as a notification message by the renderer. 419 // The result of the search is sent as a notification message by the renderer.
418 } 420 }
419 421
420 void RenderViewHost::StopFinding(bool clear_selection) { 422 void RenderViewHost::StopFinding(bool clear_selection) {
421 Send(new ViewMsg_StopFinding(routing_id(), clear_selection)); 423 Send(new ViewMsg_StopFinding(routing_id(), clear_selection));
422 } 424 }
423 425
426 void RenderViewHost::GetPageLanguage() {
427 Send(new ViewMsg_DeterminePageText(routing_id()));
428 }
429
424 void RenderViewHost::Zoom(PageZoom::Function function) { 430 void RenderViewHost::Zoom(PageZoom::Function function) {
425 Send(new ViewMsg_Zoom(routing_id(), function)); 431 Send(new ViewMsg_Zoom(routing_id(), function));
426 } 432 }
427 433
428 void RenderViewHost::SetPageEncoding(const std::string& encoding_name) { 434 void RenderViewHost::SetPageEncoding(const std::string& encoding_name) {
429 Send(new ViewMsg_SetPageEncoding(routing_id(), encoding_name)); 435 Send(new ViewMsg_SetPageEncoding(routing_id(), encoding_name));
430 } 436 }
431 437
432 void RenderViewHost::ResetPageEncodingToDefault() { 438 void RenderViewHost::ResetPageEncodingToDefault() {
433 Send(new ViewMsg_ResetPageEncodingToDefault(routing_id())); 439 Send(new ViewMsg_ResetPageEncodingToDefault(routing_id()));
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 OnMsgDidDisplayInsecureContent) 752 OnMsgDidDisplayInsecureContent)
747 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRunInsecureContent, 753 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRunInsecureContent,
748 OnMsgDidRunInsecureContent) 754 OnMsgDidRunInsecureContent)
749 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad, 755 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad,
750 OnMsgDidRedirectProvisionalLoad) 756 OnMsgDidRedirectProvisionalLoad)
751 IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame, 757 IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame,
752 OnMsgDidStartProvisionalLoadForFrame) 758 OnMsgDidStartProvisionalLoadForFrame)
753 IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError, 759 IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError,
754 OnMsgDidFailProvisionalLoadWithError) 760 OnMsgDidFailProvisionalLoadWithError)
755 IPC_MESSAGE_HANDLER(ViewHostMsg_Find_Reply, OnMsgFindReply) 761 IPC_MESSAGE_HANDLER(ViewHostMsg_Find_Reply, OnMsgFindReply)
762 IPC_MESSAGE_HANDLER(ViewMsg_DeterminePageText_Reply,
763 OnDeterminePageTextReply)
756 IPC_MESSAGE_HANDLER(ViewMsg_ExecuteCodeFinished, 764 IPC_MESSAGE_HANDLER(ViewMsg_ExecuteCodeFinished,
757 OnExecuteCodeFinished) 765 OnExecuteCodeFinished)
758 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateFavIconURL, OnMsgUpdateFavIconURL) 766 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateFavIconURL, OnMsgUpdateFavIconURL)
759 IPC_MESSAGE_HANDLER(ViewHostMsg_DidDownloadFavIcon, OnMsgDidDownloadFavIcon) 767 IPC_MESSAGE_HANDLER(ViewHostMsg_DidDownloadFavIcon, OnMsgDidDownloadFavIcon)
760 IPC_MESSAGE_HANDLER(ViewHostMsg_ContextMenu, OnMsgContextMenu) 768 IPC_MESSAGE_HANDLER(ViewHostMsg_ContextMenu, OnMsgContextMenu)
761 IPC_MESSAGE_HANDLER(ViewHostMsg_OpenURL, OnMsgOpenURL) 769 IPC_MESSAGE_HANDLER(ViewHostMsg_OpenURL, OnMsgOpenURL)
762 IPC_MESSAGE_HANDLER(ViewHostMsg_DidContentsPreferredSizeChange, 770 IPC_MESSAGE_HANDLER(ViewHostMsg_DidContentsPreferredSizeChange,
763 OnMsgDidContentsPreferredSizeChange) 771 OnMsgDidContentsPreferredSizeChange)
764 IPC_MESSAGE_HANDLER(ViewHostMsg_DomOperationResponse, 772 IPC_MESSAGE_HANDLER(ViewHostMsg_DomOperationResponse,
765 OnMsgDomOperationResponse) 773 OnMsgDomOperationResponse)
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 OnCancelDesktopNotification) 837 OnCancelDesktopNotification)
830 IPC_MESSAGE_HANDLER(ViewHostMsg_RequestNotificationPermission, 838 IPC_MESSAGE_HANDLER(ViewHostMsg_RequestNotificationPermission,
831 OnRequestNotificationPermission) 839 OnRequestNotificationPermission)
832 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionRequest, OnExtensionRequest) 840 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionRequest, OnExtensionRequest)
833 IPC_MESSAGE_HANDLER(ViewHostMsg_SelectionChanged, OnMsgSelectionChanged) 841 IPC_MESSAGE_HANDLER(ViewHostMsg_SelectionChanged, OnMsgSelectionChanged)
834 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionPostMessage, 842 IPC_MESSAGE_HANDLER(ViewHostMsg_ExtensionPostMessage,
835 OnExtensionPostMessage) 843 OnExtensionPostMessage)
836 IPC_MESSAGE_HANDLER(ViewHostMsg_AccessibilityFocusChange, 844 IPC_MESSAGE_HANDLER(ViewHostMsg_AccessibilityFocusChange,
837 OnAccessibilityFocusChange) 845 OnAccessibilityFocusChange)
838 IPC_MESSAGE_HANDLER(ViewHostMsg_OnCSSInserted, OnCSSInserted) 846 IPC_MESSAGE_HANDLER(ViewHostMsg_OnCSSInserted, OnCSSInserted)
839 IPC_MESSAGE_HANDLER(ViewHostMsg_PageContents, OnPageContents)
840 // Have the super handle all other messages. 847 // Have the super handle all other messages.
841 IPC_MESSAGE_UNHANDLED(RenderWidgetHost::OnMessageReceived(msg)) 848 IPC_MESSAGE_UNHANDLED(RenderWidgetHost::OnMessageReceived(msg))
842 IPC_END_MESSAGE_MAP_EX() 849 IPC_END_MESSAGE_MAP_EX()
843 850
844 if (!msg_is_ok) { 851 if (!msg_is_ok) {
845 // The message had a handler, but its de-serialization failed. 852 // The message had a handler, but its de-serialization failed.
846 // Kill the renderer. 853 // Kill the renderer.
847 process()->ReceivedBadMessage(msg.type()); 854 process()->ReceivedBadMessage(msg.type());
848 } 855 }
849 } 856 }
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 1140
1134 // Send a notification to the renderer that we are ready to receive more 1141 // Send a notification to the renderer that we are ready to receive more
1135 // results from the scoping effort of the Find operation. The FindInPage 1142 // results from the scoping effort of the Find operation. The FindInPage
1136 // scoping is asynchronous and periodically sends results back up to the 1143 // scoping is asynchronous and periodically sends results back up to the
1137 // browser using IPC. In an effort to not spam the browser we have the 1144 // browser using IPC. In an effort to not spam the browser we have the
1138 // browser send an ACK for each FindReply message and have the renderer 1145 // browser send an ACK for each FindReply message and have the renderer
1139 // queue up the latest status message while waiting for this ACK. 1146 // queue up the latest status message while waiting for this ACK.
1140 Send(new ViewMsg_FindReplyACK(routing_id())); 1147 Send(new ViewMsg_FindReplyACK(routing_id()));
1141 } 1148 }
1142 1149
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
1143 void RenderViewHost::OnExecuteCodeFinished(int request_id, bool success) { 1166 void RenderViewHost::OnExecuteCodeFinished(int request_id, bool success) {
1144 std::pair<int, bool> result_details(request_id, success); 1167 std::pair<int, bool> result_details(request_id, success);
1145 NotificationService::current()->Notify( 1168 NotificationService::current()->Notify(
1146 NotificationType::TAB_CODE_EXECUTED, 1169 NotificationType::TAB_CODE_EXECUTED,
1147 NotificationService::AllSources(), 1170 NotificationService::AllSources(),
1148 Details<std::pair<int, bool> >(&result_details)); 1171 Details<std::pair<int, bool> >(&result_details));
1149 } 1172 }
1150 1173
1151 void RenderViewHost::OnMsgUpdateFavIconURL(int32 page_id, 1174 void RenderViewHost::OnMsgUpdateFavIconURL(int32 page_id,
1152 const GURL& icon_url) { 1175 const GURL& icon_url) {
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
1753 BrowserAccessibilityManager::GetInstance()->ChangeAccessibilityFocus( 1776 BrowserAccessibilityManager::GetInstance()->ChangeAccessibilityFocus(
1754 acc_obj_id, process()->id(), routing_id()); 1777 acc_obj_id, process()->id(), routing_id());
1755 #else 1778 #else
1756 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288. 1779 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288.
1757 #endif 1780 #endif
1758 } 1781 }
1759 1782
1760 void RenderViewHost::OnCSSInserted() { 1783 void RenderViewHost::OnCSSInserted() {
1761 delegate_->DidInsertCSS(); 1784 delegate_->DidInsertCSS();
1762 } 1785 }
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