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/tab_collection/tab_collection_mediator.h" | 5 #import "ios/clean/chrome/browser/ui/tab_collection/tab_collection_mediator.h" |
6 | 6 |
7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
8 #include "base/strings/sys_string_conversions.h" | 8 #include "base/strings/sys_string_conversions.h" |
9 #import "ios/chrome/browser/web_state_list/web_state_list.h" | |
10 #import "ios/clean/chrome/browser/ui/tab_collection/tab_collection_consumer.h" | 9 #import "ios/clean/chrome/browser/ui/tab_collection/tab_collection_consumer.h" |
| 10 #import "ios/shared/chrome/browser/tabs/web_state_list.h" |
11 #include "ios/web/public/web_state/web_state.h" | 11 #include "ios/web/public/web_state/web_state.h" |
12 | 12 |
13 #if !defined(__has_feature) || !__has_feature(objc_arc) | 13 #if !defined(__has_feature) || !__has_feature(objc_arc) |
14 #error "This file requires ARC support." | 14 #error "This file requires ARC support." |
15 #endif | 15 #endif |
16 | 16 |
17 @implementation TabCollectionMediator { | 17 @implementation TabCollectionMediator { |
18 std::unique_ptr<WebStateListObserverBridge> _webStateListObserver; | 18 std::unique_ptr<WebStateListObserverBridge> _webStateListObserver; |
19 } | 19 } |
20 | 20 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // PLACEHOLDER: Use real webstate title in the future. | 114 // PLACEHOLDER: Use real webstate title in the future. |
115 GURL url = webState->GetVisibleURL(); | 115 GURL url = webState->GetVisibleURL(); |
116 NSString* urlText = @"<New Tab>"; | 116 NSString* urlText = @"<New Tab>"; |
117 if (url.is_valid()) { | 117 if (url.is_valid()) { |
118 urlText = base::SysUTF8ToNSString(url.spec()); | 118 urlText = base::SysUTF8ToNSString(url.spec()); |
119 } | 119 } |
120 return urlText; | 120 return urlText; |
121 } | 121 } |
122 | 122 |
123 @end | 123 @end |
OLD | NEW |