| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "ios/web/web_state/navigation_context_impl.h" | 5 #include "ios/web/web_state/navigation_context_impl.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 | 8 |
| 9 namespace web { | 9 namespace web { |
| 10 | 10 |
| 11 // static | 11 // static |
| 12 std::unique_ptr<NavigationContext> | 12 std::unique_ptr<NavigationContext> |
| 13 NavigationContextImpl::CreateNavigationContext(WebState* web_state, | 13 NavigationContextImpl::CreateNavigationContext(WebState* web_state, |
| 14 const GURL& url) { | 14 const GURL& url) { |
| 15 std::unique_ptr<NavigationContext> resut(new NavigationContextImpl( | 15 std::unique_ptr<NavigationContext> resut(new NavigationContextImpl( |
| 16 web_state, url, false /* is_same_document */, false /* is_error_page */)); | 16 web_state, url, false /* is_same_document */, false /* is_error_page */)); |
| 17 return resut; | 17 return resut; |
| 18 } | 18 } |
| 19 | 19 |
| 20 // static | 20 // static |
| 21 std::unique_ptr<NavigationContext> | 21 std::unique_ptr<NavigationContext> |
| 22 NavigationContextImpl::CreateSamePageNavigationContext(WebState* web_state, | 22 NavigationContextImpl::CreateSameDocumentNavigationContext(WebState* web_state, |
| 23 const GURL& url) { | 23 const GURL& url) { |
| 24 std::unique_ptr<NavigationContext> result(new NavigationContextImpl( | 24 std::unique_ptr<NavigationContext> result(new NavigationContextImpl( |
| 25 web_state, url, true /* is_same_document */, false /* is_error_page */)); | 25 web_state, url, true /* is_same_document */, false /* is_error_page */)); |
| 26 return result; | 26 return result; |
| 27 } | 27 } |
| 28 | 28 |
| 29 // static | 29 // static |
| 30 std::unique_ptr<NavigationContext> | 30 std::unique_ptr<NavigationContext> |
| 31 NavigationContextImpl::CreateErrorPageNavigationContext(WebState* web_state, | 31 NavigationContextImpl::CreateErrorPageNavigationContext(WebState* web_state, |
| 32 const GURL& url) { | 32 const GURL& url) { |
| 33 std::unique_ptr<NavigationContext> result(new NavigationContextImpl( | 33 std::unique_ptr<NavigationContext> result(new NavigationContextImpl( |
| (...skipping 22 matching lines...) Expand all Loading... |
| 56 bool is_same_document, | 56 bool is_same_document, |
| 57 bool is_error_page) | 57 bool is_error_page) |
| 58 : web_state_(web_state), | 58 : web_state_(web_state), |
| 59 url_(url), | 59 url_(url), |
| 60 is_same_document_(is_same_document), | 60 is_same_document_(is_same_document), |
| 61 is_error_page_(is_error_page) {} | 61 is_error_page_(is_error_page) {} |
| 62 | 62 |
| 63 NavigationContextImpl::~NavigationContextImpl() = default; | 63 NavigationContextImpl::~NavigationContextImpl() = default; |
| 64 | 64 |
| 65 } // namespace web | 65 } // namespace web |
| OLD | NEW |