OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/web_contents/web_contents_impl.h" | 5 #include "content/browser/web_contents/web_contents_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <cmath> | 9 #include <cmath> |
10 #include <utility> | 10 #include <utility> |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 #include "content/browser/media/session/media_session_impl.h" | 64 #include "content/browser/media/session/media_session_impl.h" |
65 #include "content/browser/message_port_message_filter.h" | 65 #include "content/browser/message_port_message_filter.h" |
66 #include "content/browser/plugin_content_origin_whitelist.h" | 66 #include "content/browser/plugin_content_origin_whitelist.h" |
67 #include "content/browser/renderer_host/render_process_host_impl.h" | 67 #include "content/browser/renderer_host/render_process_host_impl.h" |
68 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 68 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
69 #include "content/browser/renderer_host/render_view_host_impl.h" | 69 #include "content/browser/renderer_host/render_view_host_impl.h" |
70 #include "content/browser/renderer_host/render_widget_host_impl.h" | 70 #include "content/browser/renderer_host/render_widget_host_impl.h" |
71 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" | 71 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" |
72 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 72 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
73 #include "content/browser/renderer_host/text_input_manager.h" | 73 #include "content/browser/renderer_host/text_input_manager.h" |
74 #include "content/browser/screen_orientation/screen_orientation_dispatcher_host_
impl.h" | 74 #include "content/browser/screen_orientation/screen_orientation.h" |
75 #include "content/browser/site_instance_impl.h" | 75 #include "content/browser/site_instance_impl.h" |
76 #include "content/browser/web_contents/web_contents_view_child_frame.h" | 76 #include "content/browser/web_contents/web_contents_view_child_frame.h" |
77 #include "content/browser/web_contents/web_contents_view_guest.h" | 77 #include "content/browser/web_contents/web_contents_view_guest.h" |
78 #include "content/browser/webui/generic_handler.h" | 78 #include "content/browser/webui/generic_handler.h" |
79 #include "content/browser/webui/web_ui_controller_factory_registry.h" | 79 #include "content/browser/webui/web_ui_controller_factory_registry.h" |
80 #include "content/browser/webui/web_ui_impl.h" | 80 #include "content/browser/webui/web_ui_impl.h" |
81 #include "content/common/browser_plugin/browser_plugin_constants.h" | 81 #include "content/common/browser_plugin/browser_plugin_constants.h" |
82 #include "content/common/browser_plugin/browser_plugin_messages.h" | 82 #include "content/common/browser_plugin/browser_plugin_messages.h" |
83 #include "content/common/frame_messages.h" | 83 #include "content/common/frame_messages.h" |
84 #include "content/common/input_messages.h" | 84 #include "content/common/input_messages.h" |
(...skipping 11 matching lines...) Expand all Loading... |
96 #include "content/public/browser/guest_mode.h" | 96 #include "content/public/browser/guest_mode.h" |
97 #include "content/public/browser/invalidate_type.h" | 97 #include "content/public/browser/invalidate_type.h" |
98 #include "content/public/browser/javascript_dialog_manager.h" | 98 #include "content/public/browser/javascript_dialog_manager.h" |
99 #include "content/public/browser/load_notification_details.h" | 99 #include "content/public/browser/load_notification_details.h" |
100 #include "content/public/browser/navigation_details.h" | 100 #include "content/public/browser/navigation_details.h" |
101 #include "content/public/browser/notification_details.h" | 101 #include "content/public/browser/notification_details.h" |
102 #include "content/public/browser/notification_service.h" | 102 #include "content/public/browser/notification_service.h" |
103 #include "content/public/browser/notification_types.h" | 103 #include "content/public/browser/notification_types.h" |
104 #include "content/public/browser/render_widget_host_iterator.h" | 104 #include "content/public/browser/render_widget_host_iterator.h" |
105 #include "content/public/browser/resource_request_details.h" | 105 #include "content/public/browser/resource_request_details.h" |
106 #include "content/public/browser/screen_orientation_dispatcher_host.h" | 106 #include "content/public/browser/screen_orientation_provider.h" |
107 #include "content/public/browser/security_style_explanations.h" | 107 #include "content/public/browser/security_style_explanations.h" |
108 #include "content/public/browser/storage_partition.h" | 108 #include "content/public/browser/storage_partition.h" |
109 #include "content/public/browser/user_metrics.h" | 109 #include "content/public/browser/user_metrics.h" |
110 #include "content/public/browser/web_contents_binding_set.h" | 110 #include "content/public/browser/web_contents_binding_set.h" |
111 #include "content/public/browser/web_contents_delegate.h" | 111 #include "content/public/browser/web_contents_delegate.h" |
112 #include "content/public/browser/web_contents_unresponsive_state.h" | 112 #include "content/public/browser/web_contents_unresponsive_state.h" |
113 #include "content/public/common/bindings_policy.h" | 113 #include "content/public/common/bindings_policy.h" |
114 #include "content/public/common/browser_side_navigation_policy.h" | 114 #include "content/public/common/browser_side_navigation_policy.h" |
115 #include "content/public/common/child_process_host.h" | 115 #include "content/public/common/child_process_host.h" |
116 #include "content/public/common/content_constants.h" | 116 #include "content/public/common/content_constants.h" |
(...skipping 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1603 | 1603 |
1604 #if defined(ENABLE_PLUGINS) | 1604 #if defined(ENABLE_PLUGINS) |
1605 plugin_content_origin_whitelist_.reset( | 1605 plugin_content_origin_whitelist_.reset( |
1606 new PluginContentOriginWhitelist(this)); | 1606 new PluginContentOriginWhitelist(this)); |
1607 #endif | 1607 #endif |
1608 | 1608 |
1609 registrar_.Add(this, | 1609 registrar_.Add(this, |
1610 NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED, | 1610 NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED, |
1611 NotificationService::AllBrowserContextsAndSources()); | 1611 NotificationService::AllBrowserContextsAndSources()); |
1612 | 1612 |
1613 screen_orientation_dispatcher_host_.reset( | 1613 screen_orientation_.reset(new ScreenOrientation(this)); |
1614 new ScreenOrientationDispatcherHostImpl(this)); | |
1615 | 1614 |
1616 manifest_manager_host_.reset(new ManifestManagerHost(this)); | 1615 manifest_manager_host_.reset(new ManifestManagerHost(this)); |
1617 | 1616 |
1618 #if defined(OS_ANDROID) | 1617 #if defined(OS_ANDROID) |
1619 date_time_chooser_.reset(new DateTimeChooserAndroid()); | 1618 date_time_chooser_.reset(new DateTimeChooserAndroid()); |
1620 #endif | 1619 #endif |
1621 | 1620 |
1622 // BrowserPluginGuest::Init needs to be called after this WebContents has | 1621 // BrowserPluginGuest::Init needs to be called after this WebContents has |
1623 // a RenderWidgetHostViewGuest. That is, |view_->CreateView| above. | 1622 // a RenderWidgetHostViewGuest. That is, |view_->CreateView| above. |
1624 if (browser_plugin_guest_) | 1623 if (browser_plugin_guest_) |
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2416 | 2415 |
2417 device::GeolocationServiceContext* | 2416 device::GeolocationServiceContext* |
2418 WebContentsImpl::GetGeolocationServiceContext() { | 2417 WebContentsImpl::GetGeolocationServiceContext() { |
2419 return geolocation_service_context_.get(); | 2418 return geolocation_service_context_.get(); |
2420 } | 2419 } |
2421 | 2420 |
2422 device::WakeLockServiceContext* WebContentsImpl::GetWakeLockServiceContext() { | 2421 device::WakeLockServiceContext* WebContentsImpl::GetWakeLockServiceContext() { |
2423 return wake_lock_service_context_.get(); | 2422 return wake_lock_service_context_.get(); |
2424 } | 2423 } |
2425 | 2424 |
| 2425 ScreenOrientationProvider* WebContentsImpl::GetScreenOrientationProvider() { |
| 2426 return screen_orientation_.get()->GetScreenOrientationProvider(); |
| 2427 } |
| 2428 |
2426 void WebContentsImpl::OnShowValidationMessage( | 2429 void WebContentsImpl::OnShowValidationMessage( |
2427 const gfx::Rect& anchor_in_root_view, | 2430 const gfx::Rect& anchor_in_root_view, |
2428 const base::string16& main_text, | 2431 const base::string16& main_text, |
2429 const base::string16& sub_text) { | 2432 const base::string16& sub_text) { |
2430 if (delegate_) | 2433 if (delegate_) |
2431 delegate_->ShowValidationMessage( | 2434 delegate_->ShowValidationMessage( |
2432 this, anchor_in_root_view, main_text, sub_text); | 2435 this, anchor_in_root_view, main_text, sub_text); |
2433 } | 2436 } |
2434 | 2437 |
2435 void WebContentsImpl::OnHideValidationMessage() { | 2438 void WebContentsImpl::OnHideValidationMessage() { |
(...skipping 2745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5181 dialog_manager_ = dialog_manager; | 5184 dialog_manager_ = dialog_manager; |
5182 } | 5185 } |
5183 | 5186 |
5184 void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) { | 5187 void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) { |
5185 auto it = binding_sets_.find(interface_name); | 5188 auto it = binding_sets_.find(interface_name); |
5186 if (it != binding_sets_.end()) | 5189 if (it != binding_sets_.end()) |
5187 binding_sets_.erase(it); | 5190 binding_sets_.erase(it); |
5188 } | 5191 } |
5189 | 5192 |
5190 } // namespace content | 5193 } // namespace content |
OLD | NEW |