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

Unified Diff: chrome/browser/ui/webui/md_history_ui.cc

Issue 1641543002: MD History: Refactored design for displaying history information (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@second_patch
Patch Set: Borders + comments addressed Created 4 years, 10 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: chrome/browser/ui/webui/md_history_ui.cc
diff --git a/chrome/browser/ui/webui/md_history_ui.cc b/chrome/browser/ui/webui/md_history_ui.cc
index f7672357b0fb6367af95c43e08a0079d7d57844c..a9aa5a3b1e8f219467e7dca0359b814e23362788 100644
--- a/chrome/browser/ui/webui/md_history_ui.cc
+++ b/chrome/browser/ui/webui/md_history_ui.cc
@@ -40,16 +40,12 @@ content::WebUIDataSource* CreateMdHistoryUIHTMLSource() {
source->AddLocalizedString("search", IDS_MD_HISTORY_SEARCH);
source->AddLocalizedString("title", IDS_HISTORY_TITLE);
- source->AddResourcePath("history_card.html",
- IDR_MD_HISTORY_HISTORY_CARD_HTML);
- source->AddResourcePath("history_card.js", IDR_MD_HISTORY_HISTORY_CARD_JS);
- source->AddResourcePath("history_card_manager.html",
- IDR_MD_HISTORY_HISTORY_CARD_MANAGER_HTML);
- source->AddResourcePath("history_card_manager.js",
- IDR_MD_HISTORY_HISTORY_CARD_MANAGER_JS);
source->AddResourcePath("history_item.html",
IDR_MD_HISTORY_HISTORY_ITEM_HTML);
source->AddResourcePath("history_item.js", IDR_MD_HISTORY_HISTORY_ITEM_JS);
+ source->AddResourcePath("history_list.html",
+ IDR_MD_HISTORY_HISTORY_LIST_HTML);
+ source->AddResourcePath("history_list.js", IDR_MD_HISTORY_HISTORY_LIST_JS);
source->AddResourcePath("history_toolbar.html",
IDR_MD_HISTORY_HISTORY_TOOLBAR_HTML);
source->AddResourcePath("history_toolbar.js",

Powered by Google App Engine
This is Rietveld 408576698