| 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 <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 2307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2318 | 2318 |
| 2319 void RenderFrameHostImpl::OpenURL(const FrameHostMsg_OpenURL_Params& params, | 2319 void RenderFrameHostImpl::OpenURL(const FrameHostMsg_OpenURL_Params& params, |
| 2320 SiteInstance* source_site_instance) { | 2320 SiteInstance* source_site_instance) { |
| 2321 GURL validated_url(params.url); | 2321 GURL validated_url(params.url); |
| 2322 GetProcess()->FilterURL(false, &validated_url); | 2322 GetProcess()->FilterURL(false, &validated_url); |
| 2323 | 2323 |
| 2324 TRACE_EVENT1("navigation", "RenderFrameHostImpl::OpenURL", "url", | 2324 TRACE_EVENT1("navigation", "RenderFrameHostImpl::OpenURL", "url", |
| 2325 validated_url.possibly_invalid_spec()); | 2325 validated_url.possibly_invalid_spec()); |
| 2326 frame_tree_node_->navigator()->RequestOpenURL( | 2326 frame_tree_node_->navigator()->RequestOpenURL( |
| 2327 this, validated_url, params.uses_post, params.resource_request_body, | 2327 this, validated_url, params.uses_post, params.resource_request_body, |
| 2328 source_site_instance, params.referrer, params.disposition, | 2328 params.extra_headers, source_site_instance, params.referrer, |
| 2329 params.should_replace_current_entry, params.user_gesture); | 2329 params.disposition, params.should_replace_current_entry, |
| 2330 params.user_gesture); |
| 2330 } | 2331 } |
| 2331 | 2332 |
| 2332 void RenderFrameHostImpl::Stop() { | 2333 void RenderFrameHostImpl::Stop() { |
| 2333 Send(new FrameMsg_Stop(routing_id_)); | 2334 Send(new FrameMsg_Stop(routing_id_)); |
| 2334 } | 2335 } |
| 2335 | 2336 |
| 2336 void RenderFrameHostImpl::DispatchBeforeUnload(bool for_navigation, | 2337 void RenderFrameHostImpl::DispatchBeforeUnload(bool for_navigation, |
| 2337 bool is_reload) { | 2338 bool is_reload) { |
| 2338 DCHECK(for_navigation || !is_reload); | 2339 DCHECK(for_navigation || !is_reload); |
| 2339 | 2340 |
| (...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3099 web_bluetooth_service_->SetClientConnectionErrorHandler(base::Bind( | 3100 web_bluetooth_service_->SetClientConnectionErrorHandler(base::Bind( |
| 3100 &RenderFrameHostImpl::DeleteWebBluetoothService, base::Unretained(this))); | 3101 &RenderFrameHostImpl::DeleteWebBluetoothService, base::Unretained(this))); |
| 3101 return web_bluetooth_service_.get(); | 3102 return web_bluetooth_service_.get(); |
| 3102 } | 3103 } |
| 3103 | 3104 |
| 3104 void RenderFrameHostImpl::DeleteWebBluetoothService() { | 3105 void RenderFrameHostImpl::DeleteWebBluetoothService() { |
| 3105 web_bluetooth_service_.reset(); | 3106 web_bluetooth_service_.reset(); |
| 3106 } | 3107 } |
| 3107 | 3108 |
| 3108 } // namespace content | 3109 } // namespace content |
| OLD | NEW |