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 #import "ios/clean/chrome/browser/ui/web_contents/web_contents_mediator.h" | 5 #import "ios/clean/chrome/browser/ui/web_contents/web_contents_mediator.h" |
6 | 6 |
7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "ios/chrome/browser/chrome_url_constants.h" |
8 #import "ios/clean/chrome/browser/ui/web_contents/web_contents_consumer.h" | 9 #import "ios/clean/chrome/browser/ui/web_contents/web_contents_consumer.h" |
9 #import "ios/shared/chrome/browser/tabs/web_state_list.h" | 10 #import "ios/shared/chrome/browser/tabs/web_state_list.h" |
10 #import "ios/shared/chrome/browser/tabs/web_state_list_observer_bridge.h" | 11 #import "ios/shared/chrome/browser/tabs/web_state_list_observer_bridge.h" |
11 #import "ios/web/public/navigation_manager.h" | 12 #import "ios/web/public/navigation_manager.h" |
12 #include "ios/web/public/web_state/web_state.h" | 13 #include "ios/web/public/web_state/web_state.h" |
13 #include "ui/base/page_transition_types.h" | 14 #include "ui/base/page_transition_types.h" |
14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
15 | 16 |
16 #if !defined(__has_feature) || !__has_feature(objc_arc) | 17 #if !defined(__has_feature) || !__has_feature(objc_arc) |
17 #error "This file requires ARC support." | 18 #error "This file requires ARC support." |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 [self navigateToDefaultPage:webState]; | 96 [self navigateToDefaultPage:webState]; |
96 } | 97 } |
97 if (self.consumer) { | 98 if (self.consumer) { |
98 [self.consumer contentViewDidChange:updatedView]; | 99 [self.consumer contentViewDidChange:updatedView]; |
99 } | 100 } |
100 } | 101 } |
101 | 102 |
102 // PLACEHOLDER: This navigates the page since the omnibox is not yet hooked up. | 103 // PLACEHOLDER: This navigates the page since the omnibox is not yet hooked up. |
103 - (void)navigateToDefaultPage:(web::WebState*)webState { | 104 - (void)navigateToDefaultPage:(web::WebState*)webState { |
104 if (!webState->GetNavigationManager()->GetItemCount()) { | 105 if (!webState->GetNavigationManager()->GetItemCount()) { |
105 web::NavigationManager::WebLoadParams params( | 106 web::NavigationManager::WebLoadParams params((GURL(kChromeUINewTabURL))); |
106 GURL("https://dev.chromium.org/")); | |
107 params.transition_type = ui::PAGE_TRANSITION_TYPED; | 107 params.transition_type = ui::PAGE_TRANSITION_TYPED; |
108 webState->GetNavigationManager()->LoadURLWithParams(params); | 108 webState->GetNavigationManager()->LoadURLWithParams(params); |
109 } | 109 } |
110 } | 110 } |
111 | 111 |
112 @end | 112 @end |
OLD | NEW |