Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(883)

Unified Diff: ios/chrome/browser/ui/ntp/recent_tabs/views/session_tab_data_view.mm

Issue 2608253003: [ios] Moves tab_switcher code out of the ios_internal namespace. (Closed)
Patch Set: Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/ntp/recent_tabs/views/session_tab_data_view.mm
diff --git a/ios/chrome/browser/ui/ntp/recent_tabs/views/session_tab_data_view.mm b/ios/chrome/browser/ui/ntp/recent_tabs/views/session_tab_data_view.mm
index 73ee56c70a0549140deb1a3005cb1358a90b0ff7..8aee9c94420377a5586b3d2347eea1f911111acf 100644
--- a/ios/chrome/browser/ui/ntp/recent_tabs/views/session_tab_data_view.mm
+++ b/ios/chrome/browser/ui/ntp/recent_tabs/views/session_tab_data_view.mm
@@ -106,7 +106,7 @@ const CGFloat kDesiredHeight = 48;
DCHECK(browserState);
[_label setText:text];
self.accessibilityLabel = [_label accessibilityLabel];
- ios_internal::GetFavicon(url, browserState, ^(UIImage* newIcon) {
+ TabSwitcherGetFavicon(url, browserState, ^(UIImage* newIcon) {
[_favicon setImage:newIcon];
});
}

Powered by Google App Engine
This is Rietveld 408576698