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

Unified Diff: ui/base/models/simple_menu_model.cc

Issue 460143003: Mac: silently fall back to normal separator drawing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: ui/base/models/simple_menu_model.cc
diff --git a/ui/base/models/simple_menu_model.cc b/ui/base/models/simple_menu_model.cc
index b8d084ffd41514f056d10b6234aa1cc872a74239..336fd4139a85095ab464e0c33d4dc52a91f09082 100644
--- a/ui/base/models/simple_menu_model.cc
+++ b/ui/base/models/simple_menu_model.cc
@@ -131,7 +131,7 @@ void SimpleMenuModel::AddSeparator(MenuSeparatorType separator_type) {
return;
}
#if !defined(USE_AURA)
- if (separator_type != NORMAL_SEPARATOR)
+ if (separator_type == SPACING_SEPARATOR)
NOTIMPLEMENTED();
#endif
Item item = { kSeparatorId, base::string16(), base::string16(),
« 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