Skip to content

Commit

Permalink
remove an ifdef that seems not to do anything useful
Browse files Browse the repository at this point in the history
(Mac doesn't use this model anyway, although perhaps it should)

BUG=237697

Review URL: https://codereview.chromium.org/182343005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254372 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
estade@chromium.org committed Mar 1, 2014
1 parent 6d73d2a commit e319a76
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ RecentlyUsedFoldersComboModel::RecentlyUsedFoldersComboModel(
items_.push_back(Item(model->other_node(), Item::TYPE_NODE));
if (model->mobile_node()->IsVisible())
items_.push_back(Item(model->mobile_node(), Item::TYPE_NODE));
#if defined(USE_AURA) || defined(TOOLKIT_GTK)
items_.push_back(Item(NULL, Item::TYPE_SEPARATOR));
#endif
items_.push_back(Item(NULL, Item::TYPE_CHOOSE_ANOTHER_FOLDER));

std::vector<Item>::iterator it = std::find(items_.begin(),
Expand Down

0 comments on commit e319a76

Please sign in to comment.