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

Side by Side Diff: content/browser/web_contents/web_contents_impl.cc

Issue 2391883006: Mojo-ify implementation of screen orientation locking/unlocking. (Closed)
Patch Set: Codereview update Created 4 years, 1 month 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
OLDNEW
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #include "content/browser/media/session/media_session.h" 63 #include "content/browser/media/session/media_session.h"
64 #include "content/browser/message_port_message_filter.h" 64 #include "content/browser/message_port_message_filter.h"
65 #include "content/browser/plugin_content_origin_whitelist.h" 65 #include "content/browser/plugin_content_origin_whitelist.h"
66 #include "content/browser/renderer_host/render_process_host_impl.h" 66 #include "content/browser/renderer_host/render_process_host_impl.h"
67 #include "content/browser/renderer_host/render_view_host_delegate_view.h" 67 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
68 #include "content/browser/renderer_host/render_view_host_impl.h" 68 #include "content/browser/renderer_host/render_view_host_impl.h"
69 #include "content/browser/renderer_host/render_widget_host_impl.h" 69 #include "content/browser/renderer_host/render_widget_host_impl.h"
70 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" 70 #include "content/browser/renderer_host/render_widget_host_input_event_router.h"
71 #include "content/browser/renderer_host/render_widget_host_view_base.h" 71 #include "content/browser/renderer_host/render_widget_host_view_base.h"
72 #include "content/browser/renderer_host/text_input_manager.h" 72 #include "content/browser/renderer_host/text_input_manager.h"
73 #include "content/browser/screen_orientation/screen_orientation_dispatcher_host_ impl.h" 73 #include "content/browser/screen_orientation/screen_orientation_impl.h"
74 #include "content/browser/site_instance_impl.h" 74 #include "content/browser/site_instance_impl.h"
75 #include "content/browser/web_contents/web_contents_view_child_frame.h" 75 #include "content/browser/web_contents/web_contents_view_child_frame.h"
76 #include "content/browser/web_contents/web_contents_view_guest.h" 76 #include "content/browser/web_contents/web_contents_view_guest.h"
77 #include "content/browser/webui/generic_handler.h" 77 #include "content/browser/webui/generic_handler.h"
78 #include "content/browser/webui/web_ui_controller_factory_registry.h" 78 #include "content/browser/webui/web_ui_controller_factory_registry.h"
79 #include "content/browser/webui/web_ui_impl.h" 79 #include "content/browser/webui/web_ui_impl.h"
80 #include "content/common/browser_plugin/browser_plugin_constants.h" 80 #include "content/common/browser_plugin/browser_plugin_constants.h"
81 #include "content/common/browser_plugin/browser_plugin_messages.h" 81 #include "content/common/browser_plugin/browser_plugin_messages.h"
82 #include "content/common/frame_messages.h" 82 #include "content/common/frame_messages.h"
83 #include "content/common/input_messages.h" 83 #include "content/common/input_messages.h"
(...skipping 11 matching lines...) Expand all
95 #include "content/public/browser/guest_mode.h" 95 #include "content/public/browser/guest_mode.h"
96 #include "content/public/browser/invalidate_type.h" 96 #include "content/public/browser/invalidate_type.h"
97 #include "content/public/browser/javascript_dialog_manager.h" 97 #include "content/public/browser/javascript_dialog_manager.h"
98 #include "content/public/browser/load_notification_details.h" 98 #include "content/public/browser/load_notification_details.h"
99 #include "content/public/browser/navigation_details.h" 99 #include "content/public/browser/navigation_details.h"
100 #include "content/public/browser/notification_details.h" 100 #include "content/public/browser/notification_details.h"
101 #include "content/public/browser/notification_service.h" 101 #include "content/public/browser/notification_service.h"
102 #include "content/public/browser/notification_types.h" 102 #include "content/public/browser/notification_types.h"
103 #include "content/public/browser/render_widget_host_iterator.h" 103 #include "content/public/browser/render_widget_host_iterator.h"
104 #include "content/public/browser/resource_request_details.h" 104 #include "content/public/browser/resource_request_details.h"
105 #include "content/public/browser/screen_orientation_dispatcher_host.h" 105 #include "content/public/browser/screen_orientation_provider.h"
106 #include "content/public/browser/security_style_explanations.h" 106 #include "content/public/browser/security_style_explanations.h"
107 #include "content/public/browser/storage_partition.h" 107 #include "content/public/browser/storage_partition.h"
108 #include "content/public/browser/user_metrics.h" 108 #include "content/public/browser/user_metrics.h"
109 #include "content/public/browser/web_contents_binding_set.h" 109 #include "content/public/browser/web_contents_binding_set.h"
110 #include "content/public/browser/web_contents_delegate.h" 110 #include "content/public/browser/web_contents_delegate.h"
111 #include "content/public/browser/web_contents_unresponsive_state.h" 111 #include "content/public/browser/web_contents_unresponsive_state.h"
112 #include "content/public/common/bindings_policy.h" 112 #include "content/public/common/bindings_policy.h"
113 #include "content/public/common/browser_side_navigation_policy.h" 113 #include "content/public/common/browser_side_navigation_policy.h"
114 #include "content/public/common/child_process_host.h" 114 #include "content/public/common/child_process_host.h"
115 #include "content/public/common/content_constants.h" 115 #include "content/public/common/content_constants.h"
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 1586
1587 #if defined(ENABLE_PLUGINS) 1587 #if defined(ENABLE_PLUGINS)
1588 plugin_content_origin_whitelist_.reset( 1588 plugin_content_origin_whitelist_.reset(
1589 new PluginContentOriginWhitelist(this)); 1589 new PluginContentOriginWhitelist(this));
1590 #endif 1590 #endif
1591 1591
1592 registrar_.Add(this, 1592 registrar_.Add(this,
1593 NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED, 1593 NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED,
1594 NotificationService::AllBrowserContextsAndSources()); 1594 NotificationService::AllBrowserContextsAndSources());
1595 1595
1596 screen_orientation_dispatcher_host_.reset( 1596 screen_orientation_.reset(new ScreenOrientation(this));
1597 new ScreenOrientationDispatcherHostImpl(this));
1598 1597
1599 manifest_manager_host_.reset(new ManifestManagerHost(this)); 1598 manifest_manager_host_.reset(new ManifestManagerHost(this));
1600 1599
1601 #if defined(OS_ANDROID) 1600 #if defined(OS_ANDROID)
1602 date_time_chooser_.reset(new DateTimeChooserAndroid()); 1601 date_time_chooser_.reset(new DateTimeChooserAndroid());
1603 #endif 1602 #endif
1604 1603
1605 // BrowserPluginGuest::Init needs to be called after this WebContents has 1604 // BrowserPluginGuest::Init needs to be called after this WebContents has
1606 // a RenderWidgetHostViewGuest. That is, |view_->CreateView| above. 1605 // a RenderWidgetHostViewGuest. That is, |view_->CreateView| above.
1607 if (browser_plugin_guest_) 1606 if (browser_plugin_guest_)
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
2399 2398
2400 device::GeolocationServiceContext* 2399 device::GeolocationServiceContext*
2401 WebContentsImpl::GetGeolocationServiceContext() { 2400 WebContentsImpl::GetGeolocationServiceContext() {
2402 return geolocation_service_context_.get(); 2401 return geolocation_service_context_.get();
2403 } 2402 }
2404 2403
2405 device::WakeLockServiceContext* WebContentsImpl::GetWakeLockServiceContext() { 2404 device::WakeLockServiceContext* WebContentsImpl::GetWakeLockServiceContext() {
2406 return wake_lock_service_context_.get(); 2405 return wake_lock_service_context_.get();
2407 } 2406 }
2408 2407
2408 ScreenOrientationProvider* WebContentsImpl::GetScreenOrientationProvider() {
2409 return screen_orientation_.get()->GetScreenOrientationProvider();
2410 }
2411
2409 void WebContentsImpl::OnShowValidationMessage( 2412 void WebContentsImpl::OnShowValidationMessage(
2410 const gfx::Rect& anchor_in_root_view, 2413 const gfx::Rect& anchor_in_root_view,
2411 const base::string16& main_text, 2414 const base::string16& main_text,
2412 const base::string16& sub_text) { 2415 const base::string16& sub_text) {
2413 if (delegate_) 2416 if (delegate_)
2414 delegate_->ShowValidationMessage( 2417 delegate_->ShowValidationMessage(
2415 this, anchor_in_root_view, main_text, sub_text); 2418 this, anchor_in_root_view, main_text, sub_text);
2416 } 2419 }
2417 2420
2418 void WebContentsImpl::OnHideValidationMessage() { 2421 void WebContentsImpl::OnHideValidationMessage() {
(...skipping 2785 matching lines...) Expand 10 before | Expand all | Expand 10 after
5204 dialog_manager_ = dialog_manager; 5207 dialog_manager_ = dialog_manager;
5205 } 5208 }
5206 5209
5207 void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) { 5210 void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) {
5208 auto it = binding_sets_.find(interface_name); 5211 auto it = binding_sets_.find(interface_name);
5209 if (it != binding_sets_.end()) 5212 if (it != binding_sets_.end())
5210 binding_sets_.erase(it); 5213 binding_sets_.erase(it);
5211 } 5214 }
5212 5215
5213 } // namespace content 5216 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698