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

Unified Diff: chrome/browser/resources/md_bookmarks/folder_node.js

Issue 2615673003: [MD WebUI] Move icons used in Bookmarks and Settings to shared file. (Closed)
Patch Set: merge Created 3 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/icons.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_bookmarks/folder_node.js
diff --git a/chrome/browser/resources/md_bookmarks/folder_node.js b/chrome/browser/resources/md_bookmarks/folder_node.js
index 6e9cce81e6c7d2133b98d5cfe5978ffad810f2aa..d58b28c2246418c6019b3f6fa11fc1e3b907eca4 100644
--- a/chrome/browser/resources/md_bookmarks/folder_node.js
+++ b/chrome/browser/resources/md_bookmarks/folder_node.js
@@ -21,7 +21,7 @@ Polymer({
* @return {string}
*/
getFolderIcon_: function() {
- return this.isSelected ? 'bookmarks:folder-open' : 'bookmarks:folder';
+ return this.isSelected ? 'bookmarks:folder-open' : 'cr:folder';
},
/**
@@ -29,8 +29,8 @@ Polymer({
* @return {string}
*/
getArrowIcon_: function() {
- return this.item.isOpen ? 'bookmarks:arrow-drop-up' :
- 'bookmarks:arrow-drop-down';
+ return this.item.isOpen ? 'cr:arrow-drop-up' :
+ 'cr:arrow-drop-down';
},
/** @private */
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/icons.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698