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

Side by Side Diff: chrome/renderer/render_view.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
« no previous file with comments | « chrome/renderer/render_view.h ('k') | chrome/test/data/english_page.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/renderer/render_view.h" 5 #include "chrome/renderer/render_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 history_forward_list_count_(0), 254 history_forward_list_count_(0),
255 has_unload_listener_(false), 255 has_unload_listener_(false),
256 decrement_shared_popup_at_destruction_(false), 256 decrement_shared_popup_at_destruction_(false),
257 autofill_query_id_(0), 257 autofill_query_id_(0),
258 popup_notification_visible_(false), 258 popup_notification_visible_(false),
259 spelling_panel_visible_(false), 259 spelling_panel_visible_(false),
260 send_content_state_immediately_(false), 260 send_content_state_immediately_(false),
261 send_preferred_size_changes_(false), 261 send_preferred_size_changes_(false),
262 ALLOW_THIS_IN_INITIALIZER_LIST( 262 ALLOW_THIS_IN_INITIALIZER_LIST(
263 notification_provider_(new NotificationProvider(this))), 263 notification_provider_(new NotificationProvider(this))),
264 determine_page_text_after_loading_stops_(false),
265 view_type_(ViewType::INVALID), 264 view_type_(ViewType::INVALID),
266 browser_window_id_(-1), 265 browser_window_id_(-1),
267 last_top_level_navigation_page_id_(-1), 266 last_top_level_navigation_page_id_(-1),
268 #if defined(OS_MACOSX) 267 #if defined(OS_MACOSX)
269 has_document_tag_(false), 268 has_document_tag_(false),
270 #endif 269 #endif
271 document_tag_(0), 270 document_tag_(0),
272 webkit_preferences_(webkit_preferences) { 271 webkit_preferences_(webkit_preferences) {
273 } 272 }
274 273
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 IPC_MESSAGE_HANDLER(ViewMsg_Replace, OnReplace) 438 IPC_MESSAGE_HANDLER(ViewMsg_Replace, OnReplace)
440 IPC_MESSAGE_HANDLER(ViewMsg_ToggleSpellPanel, OnToggleSpellPanel) 439 IPC_MESSAGE_HANDLER(ViewMsg_ToggleSpellPanel, OnToggleSpellPanel)
441 IPC_MESSAGE_HANDLER(ViewMsg_AdvanceToNextMisspelling, 440 IPC_MESSAGE_HANDLER(ViewMsg_AdvanceToNextMisspelling,
442 OnAdvanceToNextMisspelling) 441 OnAdvanceToNextMisspelling)
443 IPC_MESSAGE_HANDLER(ViewMsg_ToggleSpellCheck, OnToggleSpellCheck) 442 IPC_MESSAGE_HANDLER(ViewMsg_ToggleSpellCheck, OnToggleSpellCheck)
444 IPC_MESSAGE_HANDLER(ViewMsg_Delete, OnDelete) 443 IPC_MESSAGE_HANDLER(ViewMsg_Delete, OnDelete)
445 IPC_MESSAGE_HANDLER(ViewMsg_SelectAll, OnSelectAll) 444 IPC_MESSAGE_HANDLER(ViewMsg_SelectAll, OnSelectAll)
446 IPC_MESSAGE_HANDLER(ViewMsg_CopyImageAt, OnCopyImageAt) 445 IPC_MESSAGE_HANDLER(ViewMsg_CopyImageAt, OnCopyImageAt)
447 IPC_MESSAGE_HANDLER(ViewMsg_ExecuteEditCommand, OnExecuteEditCommand) 446 IPC_MESSAGE_HANDLER(ViewMsg_ExecuteEditCommand, OnExecuteEditCommand)
448 IPC_MESSAGE_HANDLER(ViewMsg_Find, OnFind) 447 IPC_MESSAGE_HANDLER(ViewMsg_Find, OnFind)
449 IPC_MESSAGE_HANDLER(ViewMsg_DeterminePageText, OnDeterminePageText)
450 IPC_MESSAGE_HANDLER(ViewMsg_Zoom, OnZoom) 448 IPC_MESSAGE_HANDLER(ViewMsg_Zoom, OnZoom)
451 IPC_MESSAGE_HANDLER(ViewMsg_SetZoomLevelForLoadingHost, 449 IPC_MESSAGE_HANDLER(ViewMsg_SetZoomLevelForLoadingHost,
452 OnSetZoomLevelForLoadingHost) 450 OnSetZoomLevelForLoadingHost)
453 IPC_MESSAGE_HANDLER(ViewMsg_SetPageEncoding, OnSetPageEncoding) 451 IPC_MESSAGE_HANDLER(ViewMsg_SetPageEncoding, OnSetPageEncoding)
454 IPC_MESSAGE_HANDLER(ViewMsg_ResetPageEncodingToDefault, 452 IPC_MESSAGE_HANDLER(ViewMsg_ResetPageEncodingToDefault,
455 OnResetPageEncodingToDefault) 453 OnResetPageEncodingToDefault)
456 IPC_MESSAGE_HANDLER(ViewMsg_SetupDevToolsClient, OnSetupDevToolsClient) 454 IPC_MESSAGE_HANDLER(ViewMsg_SetupDevToolsClient, OnSetupDevToolsClient)
457 IPC_MESSAGE_HANDLER(ViewMsg_DownloadFavIcon, OnDownloadFavIcon) 455 IPC_MESSAGE_HANDLER(ViewMsg_DownloadFavIcon, OnDownloadFavIcon)
458 IPC_MESSAGE_HANDLER(ViewMsg_ScriptEvalRequest, OnScriptEvalRequest) 456 IPC_MESSAGE_HANDLER(ViewMsg_ScriptEvalRequest, OnScriptEvalRequest)
459 IPC_MESSAGE_HANDLER(ViewMsg_CSSInsertRequest, OnCSSInsertRequest) 457 IPC_MESSAGE_HANDLER(ViewMsg_CSSInsertRequest, OnCSSInsertRequest)
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 589
592 // Don't index/capture pages that failed to load. This only checks the top 590 // Don't index/capture pages that failed to load. This only checks the top
593 // level frame so the thumbnail may contain a frame that failed to load. 591 // level frame so the thumbnail may contain a frame that failed to load.
594 WebDataSource* ds = main_frame->dataSource(); 592 WebDataSource* ds = main_frame->dataSource();
595 if (ds && ds->hasUnreachableURL()) 593 if (ds && ds->hasUnreachableURL())
596 return; 594 return;
597 595
598 if (!preliminary_capture) 596 if (!preliminary_capture)
599 last_indexed_page_id_ = load_id; 597 last_indexed_page_id_ = load_id;
600 598
601 // get the URL for this page 599 // Get the URL for this page.
602 GURL url(main_frame->url()); 600 GURL url(main_frame->url());
603 if (url.is_empty()) 601 if (url.is_empty())
604 return; 602 return;
605 603
606 // full text 604 // Retrieve the frame's full text.
607 std::wstring contents; 605 std::wstring contents;
608 CaptureText(main_frame, &contents); 606 CaptureText(main_frame, &contents);
609 if (contents.size()) { 607 if (contents.size()) {
610 // Send the text to the browser for indexing. 608 // Send the text to the browser for indexing (the browser might decide not
611 Send(new ViewHostMsg_PageContents(url, load_id, contents)); 609 // to index, if the URL is HTTPS for instance) and language discovery.
612 } 610 Send(new ViewHostMsg_PageContents(routing_id_, url, load_id, contents));
613
614 // Send over text content of this page to the browser.
615 if (determine_page_text_after_loading_stops_) {
616 determine_page_text_after_loading_stops_ = false;
617 Send(new ViewMsg_DeterminePageText_Reply(routing_id_, contents));
618 } 611 }
619 612
620 // thumbnail 613 // thumbnail
621 SendThumbnail(); 614 SendThumbnail();
622 } 615 }
623 616
624 void RenderView::CaptureText(WebFrame* frame, std::wstring* contents) { 617 void RenderView::CaptureText(WebFrame* frame, std::wstring* contents) {
625 contents->clear(); 618 contents->clear();
626 if (!frame) 619 if (!frame)
627 return; 620 return;
628 621
629 // Don't index any https pages. People generally don't want their bank
630 // accounts, etc. indexed on their computer, especially since some of these
631 // things are not marked cachable.
632 // TODO(brettw) we may want to consider more elaborate heuristics such as
633 // the cachability of the page. We may also want to consider subframes (this
634 // test will still index subframes if the subframe is SSL).
635 if (GURL(frame->url()).SchemeIsSecure())
636 return;
637
638 #ifdef TIME_TEXT_RETRIEVAL 622 #ifdef TIME_TEXT_RETRIEVAL
639 double begin = time_util::GetHighResolutionTimeNow(); 623 double begin = time_util::GetHighResolutionTimeNow();
640 #endif 624 #endif
641 625
642 // get the contents of the frame 626 // get the contents of the frame
643 *contents = UTF16ToWideHack(frame->contentAsText(kMaxIndexChars)); 627 *contents = UTF16ToWideHack(frame->contentAsText(kMaxIndexChars));
644 628
645 #ifdef TIME_TEXT_RETRIEVAL 629 #ifdef TIME_TEXT_RETRIEVAL
646 double end = time_util::GetHighResolutionTimeNow(); 630 double end = time_util::GetHighResolutionTimeNow();
647 char buf[128]; 631 char buf[128];
(...skipping 2327 matching lines...) Expand 10 before | Expand all | Expand 10 after
2975 true); // reset the tickmarks 2959 true); // reset the tickmarks
2976 } 2960 }
2977 2961
2978 // Iterate to the next frame. The frame will not necessarily scope, for 2962 // Iterate to the next frame. The frame will not necessarily scope, for
2979 // example if it is not visible. 2963 // example if it is not visible.
2980 search_frame = search_frame->traverseNext(true); 2964 search_frame = search_frame->traverseNext(true);
2981 } while (search_frame != main_frame); 2965 } while (search_frame != main_frame);
2982 } 2966 }
2983 } 2967 }
2984 2968
2985 void RenderView::OnDeterminePageText() {
2986 if (!is_loading_) {
2987 if (!webview())
2988 return;
2989 WebFrame* main_frame = webview()->mainFrame();
2990 std::wstring contents;
2991 CaptureText(main_frame, &contents);
2992 Send(new ViewMsg_DeterminePageText_Reply(routing_id_, contents));
2993 determine_page_text_after_loading_stops_ = false;
2994 return;
2995 }
2996
2997 // We set |determine_page_text_after_loading_stops_| true here so that,
2998 // after page has been loaded completely, the text in the page is captured.
2999 determine_page_text_after_loading_stops_ = true;
3000 }
3001
3002 void RenderView::DnsPrefetch(const std::vector<std::string>& host_names) { 2969 void RenderView::DnsPrefetch(const std::vector<std::string>& host_names) {
3003 Send(new ViewHostMsg_DnsPrefetch(host_names)); 2970 Send(new ViewHostMsg_DnsPrefetch(host_names));
3004 } 2971 }
3005 2972
3006 void RenderView::OnZoom(PageZoom::Function function) { 2973 void RenderView::OnZoom(PageZoom::Function function) {
3007 if (!webview()) // Not sure if this can happen, but no harm in being safe. 2974 if (!webview()) // Not sure if this can happen, but no harm in being safe.
3008 return; 2975 return;
3009 2976
3010 int zoom_level = webview()->zoomLevel(); 2977 int zoom_level = webview()->zoomLevel();
3011 int new_zoom_level = webview()->setZoomLevel(false, 2978 int new_zoom_level = webview()->setZoomLevel(false,
(...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after
3929 new PluginMsg_SignalModalDialogEvent(host_window_)); 3896 new PluginMsg_SignalModalDialogEvent(host_window_));
3930 3897
3931 message->EnableMessagePumping(); // Runs a nested message loop. 3898 message->EnableMessagePumping(); // Runs a nested message loop.
3932 bool rv = Send(message); 3899 bool rv = Send(message);
3933 3900
3934 PluginChannelHost::Broadcast( 3901 PluginChannelHost::Broadcast(
3935 new PluginMsg_ResetModalDialogEvent(host_window_)); 3902 new PluginMsg_ResetModalDialogEvent(host_window_));
3936 3903
3937 return rv; 3904 return rv;
3938 } 3905 }
OLDNEW
« no previous file with comments | « chrome/renderer/render_view.h ('k') | chrome/test/data/english_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698