Commit dc1f1329 authored by Chris Lu's avatar Chris Lu Committed by Commit Bot

[ios] Fix ios/c/b/ui/table_view chevron assets and use new history icon.

Original assets had white backgrounds. These have transparent ones. Also uses the new history asset in Recent Tabs.

Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs
Change-Id: Ibbdcff9a87cc3b93a59710736fa1b82f1b246efb
Reviewed-on: https://chromium-review.googlesource.com/999294
Commit-Queue: Chris Lu <thegreenfrog@google.com>
Reviewed-by: default avatarSergio Collazos <sczs@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548836}
parent 6f339856
...@@ -12,6 +12,7 @@ source_set("recent_tabs") { ...@@ -12,6 +12,7 @@ source_set("recent_tabs") {
] ]
deps = [ deps = [
":recent_tabs_ui", ":recent_tabs_ui",
"resources:show_history",
"//base", "//base",
"//components/browser_sync", "//components/browser_sync",
"//components/sessions", "//components/sessions",
......
...@@ -192,7 +192,7 @@ const int kRelativeTimeMaxHours = 4; ...@@ -192,7 +192,7 @@ const int kRelativeTimeMaxHours = 4;
TableViewURLItem* historyItem = TableViewURLItem* historyItem =
[[TableViewURLItem alloc] initWithType:ItemTypeShowFullHistory]; [[TableViewURLItem alloc] initWithType:ItemTypeShowFullHistory];
historyItem.title = l10n_util::GetNSString(IDS_HISTORY_SHOWFULLHISTORY_LINK); historyItem.title = l10n_util::GetNSString(IDS_HISTORY_SHOWFULLHISTORY_LINK);
historyItem.favicon = [UIImage imageNamed:@"ntp_opentabs_clock"]; historyItem.favicon = [UIImage imageNamed:@"show_history"];
[model addItem:historyItem [model addItem:historyItem
toSectionWithIdentifier:SectionIdentifierRecentlyClosedTabs]; toSectionWithIdentifier:SectionIdentifierRecentlyClosedTabs];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment