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

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: reorder some icons 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
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..e2f3425bcc5efd2b4a63b6ad97ff1a40247aa44d 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 ? 'cr:folder-open' : 'cr:folder';
},
/**
@@ -29,8 +29,7 @@ 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 */

Powered by Google App Engine
This is Rietveld 408576698