| Index: components/navigation_interception/navigation_params.cc
|
| diff --git a/components/navigation_interception/navigation_params.cc b/components/navigation_interception/navigation_params.cc
|
| index f114ee4e1407b95e66844b8b6db487169de0f8e7..83579fb3855382d35b4d085d0ea8f41b9f3bf6f6 100644
|
| --- a/components/navigation_interception/navigation_params.cc
|
| +++ b/components/navigation_interception/navigation_params.cc
|
| @@ -10,19 +10,20 @@ NavigationParams::NavigationParams(const NavigationParams& other) {
|
| Assign(other);
|
| }
|
|
|
| -NavigationParams::NavigationParams(
|
| - const GURL& url,
|
| - const content::Referrer& referrer,
|
| - bool has_user_gesture,
|
| - bool is_post,
|
| - ui::PageTransition transition_type,
|
| - bool is_redirect)
|
| +NavigationParams::NavigationParams(const GURL& url,
|
| + const content::Referrer& referrer,
|
| + bool has_user_gesture,
|
| + bool is_post,
|
| + ui::PageTransition transition_type,
|
| + bool is_redirect,
|
| + bool is_external_protocol)
|
| : url_(url),
|
| referrer_(referrer),
|
| has_user_gesture_(has_user_gesture),
|
| is_post_(is_post),
|
| transition_type_(transition_type),
|
| - is_redirect_(is_redirect) {
|
| + is_redirect_(is_redirect),
|
| + is_external_protocol_(is_external_protocol) {
|
| }
|
|
|
| void NavigationParams::operator=(const NavigationParams& rhs) {
|
| @@ -36,6 +37,7 @@ void NavigationParams::Assign(const NavigationParams& other) {
|
| is_post_ = other.is_post();
|
| transition_type_ = other.transition_type();
|
| is_redirect_ = other.is_redirect();
|
| + is_external_protocol_ = other.is_external_protocol();
|
| }
|
|
|
| } // namespace navigation_interception
|
|
|