OLD | NEW |
---|---|
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" |
11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
12 #include "base/metrics/user_metrics_action.h" | 12 #include "base/metrics/user_metrics_action.h" |
13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
14 #include "content/browser/accessibility/accessibility_mode_helper.h" | 14 #include "content/browser/accessibility/accessibility_mode_helper.h" |
15 #include "content/browser/accessibility/browser_accessibility_manager.h" | 15 #include "content/browser/accessibility/browser_accessibility_manager.h" |
16 #include "content/browser/accessibility/browser_accessibility_state_impl.h" | 16 #include "content/browser/accessibility/browser_accessibility_state_impl.h" |
17 #include "content/browser/child_process_security_policy_impl.h" | 17 #include "content/browser/child_process_security_policy_impl.h" |
18 #include "content/browser/frame_host/cross_process_frame_connector.h" | 18 #include "content/browser/frame_host/cross_process_frame_connector.h" |
19 #include "content/browser/frame_host/cross_site_transferring_request.h" | 19 #include "content/browser/frame_host/cross_site_transferring_request.h" |
20 #include "content/browser/frame_host/frame_accessibility.h" | 20 #include "content/browser/frame_host/frame_accessibility.h" |
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/render_frame_host_delegate.h" | 24 #include "content/browser/frame_host/render_frame_host_delegate.h" |
25 #include "content/browser/frame_host/render_frame_proxy_host.h" | 25 #include "content/browser/frame_host/render_frame_proxy_host.h" |
26 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" | 26 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
27 #include "content/browser/geolocation/geolocation_service_context.h" | 27 #include "content/browser/geolocation/geolocation_service_context.h" |
28 #include "content/browser/permissions/permission_service_context.h" | |
29 #include "content/browser/permissions/permission_service_impl.h" | |
28 #include "content/browser/renderer_host/input/input_router.h" | 30 #include "content/browser/renderer_host/input/input_router.h" |
29 #include "content/browser/renderer_host/input/timeout_monitor.h" | 31 #include "content/browser/renderer_host/input/timeout_monitor.h" |
30 #include "content/browser/renderer_host/render_process_host_impl.h" | 32 #include "content/browser/renderer_host/render_process_host_impl.h" |
31 #include "content/browser/renderer_host/render_view_host_delegate.h" | 33 #include "content/browser/renderer_host/render_view_host_delegate.h" |
32 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 34 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
33 #include "content/browser/renderer_host/render_view_host_impl.h" | 35 #include "content/browser/renderer_host/render_view_host_impl.h" |
34 #include "content/browser/renderer_host/render_widget_host_impl.h" | 36 #include "content/browser/renderer_host/render_widget_host_impl.h" |
35 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 37 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
36 #include "content/browser/transition_request_manager.h" | 38 #include "content/browser/transition_request_manager.h" |
37 #include "content/common/accessibility_messages.h" | 39 #include "content/common/accessibility_messages.h" |
(...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1260 if (geolocation_service_context) { | 1262 if (geolocation_service_context) { |
1261 // TODO(creis): Bind process ID here so that GeolocationServiceImpl | 1263 // TODO(creis): Bind process ID here so that GeolocationServiceImpl |
1262 // can perform permissions checks once site isolation is complete. | 1264 // can perform permissions checks once site isolation is complete. |
1263 // crbug.com/426384 | 1265 // crbug.com/426384 |
1264 GetServiceRegistry()->AddService<GeolocationService>( | 1266 GetServiceRegistry()->AddService<GeolocationService>( |
1265 base::Bind(&GeolocationServiceContext::CreateService, | 1267 base::Bind(&GeolocationServiceContext::CreateService, |
1266 base::Unretained(geolocation_service_context), | 1268 base::Unretained(geolocation_service_context), |
1267 base::Bind(&RenderFrameHostImpl::DidUseGeolocationPermission, | 1269 base::Bind(&RenderFrameHostImpl::DidUseGeolocationPermission, |
1268 base::Unretained(this)))); | 1270 base::Unretained(this)))); |
1269 } | 1271 } |
1272 | |
1273 scoped_ptr<PermissionServiceContext> permission_service_context( | |
1274 new PermissionServiceContext(this)); | |
1275 GetServiceRegistry()->AddService( | |
1276 base::Bind(&PermissionServiceImpl::Create, | |
1277 base::Passed(&permission_service_context))); | |
qsr
2014/11/14 09:20:26
This callback will be run each time something conn
mlamouri (slow - plz ping)
2014/11/14 11:37:11
I might need some deeper understanding on how thin
qsr
2014/11/14 11:49:27
What you register is a factory. Each time somethin
| |
1270 } | 1278 } |
1271 | 1279 |
1272 void RenderFrameHostImpl::SetState(RenderFrameHostImplState rfh_state) { | 1280 void RenderFrameHostImpl::SetState(RenderFrameHostImplState rfh_state) { |
1273 // Only main frames should be swapped out and retained inside a proxy host. | 1281 // Only main frames should be swapped out and retained inside a proxy host. |
1274 if (rfh_state == STATE_SWAPPED_OUT) | 1282 if (rfh_state == STATE_SWAPPED_OUT) |
1275 CHECK(!GetParent()); | 1283 CHECK(!GetParent()); |
1276 | 1284 |
1277 // We update the number of RenderFrameHosts in a SiteInstance when the swapped | 1285 // We update the number of RenderFrameHosts in a SiteInstance when the swapped |
1278 // out status of a RenderFrameHost gets flipped to/from active. | 1286 // out status of a RenderFrameHost gets flipped to/from active. |
1279 if (!IsRFHStateActive(rfh_state_) && IsRFHStateActive(rfh_state)) | 1287 if (!IsRFHStateActive(rfh_state_) && IsRFHStateActive(rfh_state)) |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1698 void RenderFrameHostImpl::DidUseGeolocationPermission() { | 1706 void RenderFrameHostImpl::DidUseGeolocationPermission() { |
1699 RenderFrameHost* top_frame = frame_tree_node()->frame_tree()->GetMainFrame(); | 1707 RenderFrameHost* top_frame = frame_tree_node()->frame_tree()->GetMainFrame(); |
1700 GetContentClient()->browser()->RegisterPermissionUsage( | 1708 GetContentClient()->browser()->RegisterPermissionUsage( |
1701 PERMISSION_GEOLOCATION, | 1709 PERMISSION_GEOLOCATION, |
1702 delegate_->GetAsWebContents(), | 1710 delegate_->GetAsWebContents(), |
1703 GetLastCommittedURL().GetOrigin(), | 1711 GetLastCommittedURL().GetOrigin(), |
1704 top_frame->GetLastCommittedURL().GetOrigin()); | 1712 top_frame->GetLastCommittedURL().GetOrigin()); |
1705 } | 1713 } |
1706 | 1714 |
1707 } // namespace content | 1715 } // namespace content |
OLD | NEW |