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

Unified Diff: chrome/browser/ui/views/toolbar/app_menu_button.cc

Issue 2166853002: Reverse error and warning icons on app menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed warning icon and made all remaining browser_tools icons 1x (16x16) by default Created 4 years, 5 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/views/toolbar/app_menu_button.cc
diff --git a/chrome/browser/ui/views/toolbar/app_menu_button.cc b/chrome/browser/ui/views/toolbar/app_menu_button.cc
index 7ca27a72b422d3ae8dddfad6d1c2e67d30de7731..a83f91a934d1f4cdd8db3d426f48ea9979b15421 100644
--- a/chrome/browser/ui/views/toolbar/app_menu_button.cc
+++ b/chrome/browser/ui/views/toolbar/app_menu_button.cc
@@ -166,10 +166,8 @@ void AppMenuButton::UpdateIcon() {
icon_id = gfx::VectorIconId::BROWSER_TOOLS_UPDATE;
break;
case AppMenuIconController::IconType::GLOBAL_ERROR:
- icon_id = gfx::VectorIconId::BROWSER_TOOLS_ERROR;
- break;
case AppMenuIconController::IconType::INCOMPATIBILITY_WARNING:
- icon_id = gfx::VectorIconId::BROWSER_TOOLS_WARNING;
+ icon_id = gfx::VectorIconId::BROWSER_TOOLS_ERROR;
break;
}

Powered by Google App Engine
This is Rietveld 408576698