| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "components/navigation_interception/navigation_params.h" | 5 #include "components/navigation_interception/navigation_params.h" |
| 6 | 6 |
| 7 namespace navigation_interception { | 7 namespace navigation_interception { |
| 8 | 8 |
| 9 NavigationParams::NavigationParams(const NavigationParams& other) { | |
| 10 Assign(other); | |
| 11 } | |
| 12 | |
| 13 NavigationParams::NavigationParams(const GURL& url, | 9 NavigationParams::NavigationParams(const GURL& url, |
| 14 const content::Referrer& referrer, | 10 const content::Referrer& referrer, |
| 15 bool has_user_gesture, | 11 bool has_user_gesture, |
| 16 bool is_post, | 12 bool is_post, |
| 17 ui::PageTransition transition_type, | 13 ui::PageTransition transition_type, |
| 18 bool is_redirect, | 14 bool is_redirect, |
| 19 bool is_external_protocol, | 15 bool is_external_protocol, |
| 20 bool is_main_frame, | 16 bool is_main_frame, |
| 21 const GURL& base_url_for_data_url) | 17 const GURL& base_url_for_data_url) |
| 22 : url_(url), | 18 : url_(url), |
| 23 referrer_(referrer), | 19 referrer_(referrer), |
| 24 has_user_gesture_(has_user_gesture), | 20 has_user_gesture_(has_user_gesture), |
| 25 is_post_(is_post), | 21 is_post_(is_post), |
| 26 transition_type_(transition_type), | 22 transition_type_(transition_type), |
| 27 is_redirect_(is_redirect), | 23 is_redirect_(is_redirect), |
| 28 is_external_protocol_(is_external_protocol), | 24 is_external_protocol_(is_external_protocol), |
| 29 is_main_frame_(is_main_frame), | 25 is_main_frame_(is_main_frame), |
| 30 base_url_for_data_url_(base_url_for_data_url) {} | 26 base_url_for_data_url_(base_url_for_data_url) {} |
| 31 | 27 |
| 32 void NavigationParams::operator=(const NavigationParams& rhs) { | 28 NavigationParams::NavigationParams(const NavigationParams&) = default; |
| 33 Assign(rhs); | |
| 34 } | |
| 35 | |
| 36 void NavigationParams::Assign(const NavigationParams& other) { | |
| 37 url_ = other.url(); | |
| 38 referrer_ = other.referrer(); | |
| 39 has_user_gesture_ = other.has_user_gesture(); | |
| 40 is_post_ = other.is_post(); | |
| 41 transition_type_ = other.transition_type(); | |
| 42 is_redirect_ = other.is_redirect(); | |
| 43 is_external_protocol_ = other.is_external_protocol(); | |
| 44 is_main_frame_ = other.is_main_frame(); | |
| 45 } | |
| 46 | 29 |
| 47 } // namespace navigation_interception | 30 } // namespace navigation_interception |
| 48 | 31 |
| OLD | NEW |