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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 839773002: Plumbing from WebPresentationClient to the Presentation Mojo service for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Swapped handling the event and requesting a new one Created 5 years, 10 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/frame_host/render_frame_host_impl.h" 5 #include "content/browser/frame_host/render_frame_host_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/containers/hash_tables.h" 9 #include "base/containers/hash_tables.h"
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
(...skipping 10 matching lines...) Expand all
21 #include "content/browser/frame_host/frame_tree.h" 21 #include "content/browser/frame_host/frame_tree.h"
22 #include "content/browser/frame_host/frame_tree_node.h" 22 #include "content/browser/frame_host/frame_tree_node.h"
23 #include "content/browser/frame_host/navigator.h" 23 #include "content/browser/frame_host/navigator.h"
24 #include "content/browser/frame_host/navigator_impl.h" 24 #include "content/browser/frame_host/navigator_impl.h"
25 #include "content/browser/frame_host/render_frame_host_delegate.h" 25 #include "content/browser/frame_host/render_frame_host_delegate.h"
26 #include "content/browser/frame_host/render_frame_proxy_host.h" 26 #include "content/browser/frame_host/render_frame_proxy_host.h"
27 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" 27 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
28 #include "content/browser/geolocation/geolocation_service_context.h" 28 #include "content/browser/geolocation/geolocation_service_context.h"
29 #include "content/browser/permissions/permission_service_context.h" 29 #include "content/browser/permissions/permission_service_context.h"
30 #include "content/browser/permissions/permission_service_impl.h" 30 #include "content/browser/permissions/permission_service_impl.h"
31 #include "content/browser/presentation/presentation_service_impl.h"
31 #include "content/browser/renderer_host/input/input_router.h" 32 #include "content/browser/renderer_host/input/input_router.h"
32 #include "content/browser/renderer_host/input/timeout_monitor.h" 33 #include "content/browser/renderer_host/input/timeout_monitor.h"
33 #include "content/browser/renderer_host/render_process_host_impl.h" 34 #include "content/browser/renderer_host/render_process_host_impl.h"
34 #include "content/browser/renderer_host/render_view_host_delegate.h" 35 #include "content/browser/renderer_host/render_view_host_delegate.h"
35 #include "content/browser/renderer_host/render_view_host_delegate_view.h" 36 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
36 #include "content/browser/renderer_host/render_view_host_impl.h" 37 #include "content/browser/renderer_host/render_view_host_impl.h"
37 #include "content/browser/renderer_host/render_widget_host_impl.h" 38 #include "content/browser/renderer_host/render_widget_host_impl.h"
38 #include "content/browser/renderer_host/render_widget_host_view_base.h" 39 #include "content/browser/renderer_host/render_widget_host_view_base.h"
39 #include "content/browser/transition_request_manager.h" 40 #include "content/browser/transition_request_manager.h"
40 #include "content/common/accessibility_messages.h" 41 #include "content/common/accessibility_messages.h"
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 base::Bind(&RenderFrameHostImpl::DidUseGeolocationPermission, 1201 base::Bind(&RenderFrameHostImpl::DidUseGeolocationPermission,
1201 base::Unretained(this)))); 1202 base::Unretained(this))));
1202 } 1203 }
1203 1204
1204 if (!permission_service_context_) 1205 if (!permission_service_context_)
1205 permission_service_context_.reset(new PermissionServiceContext(this)); 1206 permission_service_context_.reset(new PermissionServiceContext(this));
1206 1207
1207 GetServiceRegistry()->AddService<PermissionService>( 1208 GetServiceRegistry()->AddService<PermissionService>(
1208 base::Bind(&PermissionServiceContext::CreateService, 1209 base::Bind(&PermissionServiceContext::CreateService,
1209 base::Unretained(permission_service_context_.get()))); 1210 base::Unretained(permission_service_context_.get())));
1211
1212 GetServiceRegistry()->AddService<presentation::PresentationService>(
1213 base::Bind(&PresentationServiceImpl::CreateService));
1210 } 1214 }
1211 1215
1212 void RenderFrameHostImpl::SetState(RenderFrameHostImplState rfh_state) { 1216 void RenderFrameHostImpl::SetState(RenderFrameHostImplState rfh_state) {
1213 // Only main frames should be swapped out and retained inside a proxy host. 1217 // Only main frames should be swapped out and retained inside a proxy host.
1214 if (rfh_state == STATE_SWAPPED_OUT) 1218 if (rfh_state == STATE_SWAPPED_OUT)
1215 CHECK(!GetParent()); 1219 CHECK(!GetParent());
1216 1220
1217 // We update the number of RenderFrameHosts in a SiteInstance when the swapped 1221 // We update the number of RenderFrameHosts in a SiteInstance when the swapped
1218 // out status of a RenderFrameHost gets flipped to/from active. 1222 // out status of a RenderFrameHost gets flipped to/from active.
1219 if (!IsRFHStateActive(rfh_state_) && IsRFHStateActive(rfh_state)) 1223 if (!IsRFHStateActive(rfh_state_) && IsRFHStateActive(rfh_state))
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
1652 void RenderFrameHostImpl::DidUseGeolocationPermission() { 1656 void RenderFrameHostImpl::DidUseGeolocationPermission() {
1653 RenderFrameHost* top_frame = frame_tree_node()->frame_tree()->GetMainFrame(); 1657 RenderFrameHost* top_frame = frame_tree_node()->frame_tree()->GetMainFrame();
1654 GetContentClient()->browser()->RegisterPermissionUsage( 1658 GetContentClient()->browser()->RegisterPermissionUsage(
1655 PERMISSION_GEOLOCATION, 1659 PERMISSION_GEOLOCATION,
1656 delegate_->GetAsWebContents(), 1660 delegate_->GetAsWebContents(),
1657 GetLastCommittedURL().GetOrigin(), 1661 GetLastCommittedURL().GetOrigin(),
1658 top_frame->GetLastCommittedURL().GetOrigin()); 1662 top_frame->GetLastCommittedURL().GetOrigin());
1659 } 1663 }
1660 1664
1661 } // namespace content 1665 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/presentation/OWNERS » ('j') | content/browser/presentation/presentation_service_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698