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

Unified Diff: chrome/browser/dom_ui/options/cookies_view_handler.cc

Issue 6331003: Mac, WEBUI: use the theme bookmark folder icon (which is blue), instead of the default yellow one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/options/cookies_view_handler.cc
===================================================================
--- chrome/browser/dom_ui/options/cookies_view_handler.cc (revision 71269)
+++ chrome/browser/dom_ui/options/cookies_view_handler.cc (working copy)
@@ -69,6 +69,9 @@
switch (node.GetDetailedInfo().node_type) {
case CookieTreeNode::DetailedInfo::TYPE_ORIGIN: {
dict->SetString(kKeyType, "origin");
+#if defined(OS_MAC)
+ dict->SetString(kKeyIcon, "chrome://theme/IDR_BOOKMARK_BAR_FOLDER");
+#endif
break;
}
case CookieTreeNode::DetailedInfo::TYPE_COOKIE: {
@@ -168,6 +171,9 @@
break;
}
default:
+#if defined(OS_MAC)
+ dict->SetString(kKeyIcon, "chrome://theme/IDR_BOOKMARK_BAR_FOLDER");
+#endif
break;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698