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/renderer/render_frame_impl.h" | 5 #include "content/renderer/render_frame_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 5856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5867 | 5867 |
5868 external_popup_menu_->DidSelectItems(canceled, selected_indices); | 5868 external_popup_menu_->DidSelectItems(canceled, selected_indices); |
5869 external_popup_menu_.reset(); | 5869 external_popup_menu_.reset(); |
5870 } | 5870 } |
5871 #endif | 5871 #endif |
5872 #endif | 5872 #endif |
5873 | 5873 |
5874 void RenderFrameImpl::OpenURL( | 5874 void RenderFrameImpl::OpenURL( |
5875 const GURL& url, | 5875 const GURL& url, |
5876 bool uses_post, | 5876 bool uses_post, |
5877 const scoped_refptr<ResourceRequestBodyImpl>& resource_request_body, | 5877 const scoped_refptr<ResourceRequestBody>& resource_request_body, |
5878 const std::string& extra_headers, | 5878 const std::string& extra_headers, |
5879 const Referrer& referrer, | 5879 const Referrer& referrer, |
5880 WebNavigationPolicy policy, | 5880 WebNavigationPolicy policy, |
5881 bool should_replace_current_entry, | 5881 bool should_replace_current_entry, |
5882 bool is_history_navigation_in_new_child, | 5882 bool is_history_navigation_in_new_child, |
5883 blink::WebTriggeringEventInfo triggering_event_info) { | 5883 blink::WebTriggeringEventInfo triggering_event_info) { |
5884 FrameHostMsg_OpenURL_Params params; | 5884 FrameHostMsg_OpenURL_Params params; |
5885 params.url = url; | 5885 params.url = url; |
5886 params.uses_post = uses_post; | 5886 params.uses_post = uses_post; |
5887 params.resource_request_body = resource_request_body; | 5887 params.resource_request_body = resource_request_body; |
(...skipping 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6890 replaces_current_history_item(info.replaces_current_history_item), | 6890 replaces_current_history_item(info.replaces_current_history_item), |
6891 history_navigation_in_new_child_frame( | 6891 history_navigation_in_new_child_frame( |
6892 info.is_history_navigation_in_new_child_frame), | 6892 info.is_history_navigation_in_new_child_frame), |
6893 client_redirect(info.is_client_redirect), | 6893 client_redirect(info.is_client_redirect), |
6894 triggering_event_info(info.triggering_event_info), | 6894 triggering_event_info(info.triggering_event_info), |
6895 cache_disabled(info.is_cache_disabled), | 6895 cache_disabled(info.is_cache_disabled), |
6896 form(info.form), | 6896 form(info.form), |
6897 source_location(info.source_location) {} | 6897 source_location(info.source_location) {} |
6898 | 6898 |
6899 } // namespace content | 6899 } // namespace content |
OLD | NEW |