OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 #include "chrome/renderer/media/ipc_video_renderer.h" | 54 #include "chrome/renderer/media/ipc_video_renderer.h" |
55 #include "chrome/renderer/navigation_state.h" | 55 #include "chrome/renderer/navigation_state.h" |
56 #include "chrome/renderer/notification_provider.h" | 56 #include "chrome/renderer/notification_provider.h" |
57 #include "chrome/renderer/plugin_channel_host.h" | 57 #include "chrome/renderer/plugin_channel_host.h" |
58 #include "chrome/renderer/print_web_view_helper.h" | 58 #include "chrome/renderer/print_web_view_helper.h" |
59 #include "chrome/renderer/render_process.h" | 59 #include "chrome/renderer/render_process.h" |
60 #include "chrome/renderer/render_thread.h" | 60 #include "chrome/renderer/render_thread.h" |
61 #include "chrome/renderer/render_view_visitor.h" | 61 #include "chrome/renderer/render_view_visitor.h" |
62 #include "chrome/renderer/renderer_webapplicationcachehost_impl.h" | 62 #include "chrome/renderer/renderer_webapplicationcachehost_impl.h" |
63 #include "chrome/renderer/renderer_webstoragenamespace_impl.h" | 63 #include "chrome/renderer/renderer_webstoragenamespace_impl.h" |
| 64 #include "chrome/renderer/speech_input_dispatcher.h" |
64 #include "chrome/renderer/spellchecker/spellcheck.h" | 65 #include "chrome/renderer/spellchecker/spellcheck.h" |
65 #include "chrome/renderer/user_script_slave.h" | 66 #include "chrome/renderer/user_script_slave.h" |
66 #include "chrome/renderer/visitedlink_slave.h" | 67 #include "chrome/renderer/visitedlink_slave.h" |
67 #include "chrome/renderer/webplugin_delegate_pepper.h" | 68 #include "chrome/renderer/webplugin_delegate_pepper.h" |
68 #include "chrome/renderer/webplugin_delegate_proxy.h" | 69 #include "chrome/renderer/webplugin_delegate_proxy.h" |
69 #include "chrome/renderer/websharedworker_proxy.h" | 70 #include "chrome/renderer/websharedworker_proxy.h" |
70 #include "chrome/renderer/webworker_proxy.h" | 71 #include "chrome/renderer/webworker_proxy.h" |
71 #include "gfx/color_utils.h" | 72 #include "gfx/color_utils.h" |
72 #include "gfx/favicon_size.h" | 73 #include "gfx/favicon_size.h" |
73 #include "gfx/native_widget_types.h" | 74 #include "gfx/native_widget_types.h" |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 if (devtools_client_.get() && devtools_client_->OnMessageReceived(message)) | 622 if (devtools_client_.get() && devtools_client_->OnMessageReceived(message)) |
622 return; | 623 return; |
623 if (devtools_agent_.get() && devtools_agent_->OnMessageReceived(message)) | 624 if (devtools_agent_.get() && devtools_agent_->OnMessageReceived(message)) |
624 return; | 625 return; |
625 if (notification_provider_->OnMessageReceived(message)) | 626 if (notification_provider_->OnMessageReceived(message)) |
626 return; | 627 return; |
627 if (geolocation_dispatcher_.get() && | 628 if (geolocation_dispatcher_.get() && |
628 geolocation_dispatcher_->OnMessageReceived(message)) { | 629 geolocation_dispatcher_->OnMessageReceived(message)) { |
629 return; | 630 return; |
630 } | 631 } |
| 632 if (speech_input_dispatcher_.get() && |
| 633 speech_input_dispatcher_->OnMessageReceived(message)) { |
| 634 return; |
| 635 } |
631 | 636 |
632 IPC_BEGIN_MESSAGE_MAP(RenderView, message) | 637 IPC_BEGIN_MESSAGE_MAP(RenderView, message) |
633 IPC_MESSAGE_HANDLER(ViewMsg_CaptureThumbnail, OnCaptureThumbnail) | 638 IPC_MESSAGE_HANDLER(ViewMsg_CaptureThumbnail, OnCaptureThumbnail) |
634 IPC_MESSAGE_HANDLER(ViewMsg_CaptureSnapshot, OnCaptureSnapshot) | 639 IPC_MESSAGE_HANDLER(ViewMsg_CaptureSnapshot, OnCaptureSnapshot) |
635 IPC_MESSAGE_HANDLER(ViewMsg_PrintPages, OnPrintPages) | 640 IPC_MESSAGE_HANDLER(ViewMsg_PrintPages, OnPrintPages) |
636 IPC_MESSAGE_HANDLER(ViewMsg_PrintingDone, OnPrintingDone) | 641 IPC_MESSAGE_HANDLER(ViewMsg_PrintingDone, OnPrintingDone) |
637 IPC_MESSAGE_HANDLER(ViewMsg_Navigate, OnNavigate) | 642 IPC_MESSAGE_HANDLER(ViewMsg_Navigate, OnNavigate) |
638 IPC_MESSAGE_HANDLER(ViewMsg_Stop, OnStop) | 643 IPC_MESSAGE_HANDLER(ViewMsg_Stop, OnStop) |
639 IPC_MESSAGE_HANDLER(ViewMsg_ReloadFrame, OnReloadFrame) | 644 IPC_MESSAGE_HANDLER(ViewMsg_ReloadFrame, OnReloadFrame) |
640 IPC_MESSAGE_HANDLER(ViewMsg_Undo, OnUndo) | 645 IPC_MESSAGE_HANDLER(ViewMsg_Undo, OnUndo) |
(...skipping 4610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5251 // The page is translated, so try to extract the form data again. | 5256 // The page is translated, so try to extract the form data again. |
5252 autofill_helper_.FrameContentsAvailable(frame); | 5257 autofill_helper_.FrameContentsAvailable(frame); |
5253 } | 5258 } |
5254 | 5259 |
5255 WebKit::WebGeolocationService* RenderView::geolocationService() { | 5260 WebKit::WebGeolocationService* RenderView::geolocationService() { |
5256 if (!geolocation_dispatcher_.get()) | 5261 if (!geolocation_dispatcher_.get()) |
5257 geolocation_dispatcher_.reset(new GeolocationDispatcher(this)); | 5262 geolocation_dispatcher_.reset(new GeolocationDispatcher(this)); |
5258 return geolocation_dispatcher_.get(); | 5263 return geolocation_dispatcher_.get(); |
5259 } | 5264 } |
5260 | 5265 |
| 5266 WebKit::WebSpeechInputController* RenderView::speechInputController( |
| 5267 WebKit::WebSpeechInputListener* listener) { |
| 5268 if (!speech_input_dispatcher_.get()) |
| 5269 speech_input_dispatcher_.reset(new SpeechInputDispatcher(this, listener)); |
| 5270 return speech_input_dispatcher_.get(); |
| 5271 } |
| 5272 |
5261 bool RenderView::IsNonLocalTopLevelNavigation( | 5273 bool RenderView::IsNonLocalTopLevelNavigation( |
5262 const GURL& url, WebKit::WebFrame* frame, WebKit::WebNavigationType type) { | 5274 const GURL& url, WebKit::WebFrame* frame, WebKit::WebNavigationType type) { |
5263 // Must be a top level frame. | 5275 // Must be a top level frame. |
5264 if (frame->parent() != NULL) | 5276 if (frame->parent() != NULL) |
5265 return false; | 5277 return false; |
5266 | 5278 |
5267 // Skip if navigation is on the same page (using '#'). | 5279 // Skip if navigation is on the same page (using '#'). |
5268 GURL frame_origin = GURL(frame->url()).GetOrigin(); | 5280 GURL frame_origin = GURL(frame->url()).GetOrigin(); |
5269 if (url.GetOrigin() != frame_origin || url.ref().empty()) { | 5281 if (url.GetOrigin() != frame_origin || url.ref().empty()) { |
5270 // The link click could stay on the same page, in cases where it sends some | 5282 // The link click could stay on the same page, in cases where it sends some |
(...skipping 18 matching lines...) Expand all Loading... |
5289 // the origins of the two domains are different. This can be treated as a | 5301 // the origins of the two domains are different. This can be treated as a |
5290 // top level navigation and routed back to the host. | 5302 // top level navigation and routed back to the host. |
5291 WebKit::WebFrame* opener = frame->opener(); | 5303 WebKit::WebFrame* opener = frame->opener(); |
5292 if (opener) { | 5304 if (opener) { |
5293 if (url.GetOrigin() != GURL(opener->url()).GetOrigin()) | 5305 if (url.GetOrigin() != GURL(opener->url()).GetOrigin()) |
5294 return true; | 5306 return true; |
5295 } | 5307 } |
5296 } | 5308 } |
5297 return false; | 5309 return false; |
5298 } | 5310 } |
OLD | NEW |