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

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.cc

Issue 2877002: Show tooltips only for users with identical display names.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | chrome/browser/chromeos/login/user_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/existing_user_controller.cc
===================================================================
--- chrome/browser/chromeos/login/existing_user_controller.cc (revision 51124)
+++ chrome/browser/chromeos/login/existing_user_controller.cc (working copy)
@@ -6,7 +6,7 @@
#include <algorithm>
#include <functional>
-#include <set>
+#include <map>
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
@@ -58,20 +58,18 @@
// tooltips with full emails to let users distinguish their accounts.
// Otherwise, disables the tooltips.
void EnableTooltipsIfNeeded(const std::vector<UserController*>& controllers) {
- bool show_name_tooltips = false;
- std::set<std::string> visible_display_names;
- for (size_t i = 0; i < controllers.size(); ++i) {
+ std::map<std::string, int> visible_display_names;
+ for (size_t i = 0; i + 1 < controllers.size(); ++i) {
const std::string& display_name =
controllers[i]->user().GetDisplayName();
- if (visible_display_names.count(display_name) > 0) {
- show_name_tooltips = true;
- break;
- }
- visible_display_names.insert(display_name);
+ ++visible_display_names[display_name];
}
- for (size_t i = 0; i < controllers.size(); ++i)
- if (!controllers[i]->is_guest())
- controllers[i]->EnableNameTooltip(show_name_tooltips);
+ for (size_t i = 0; i + 1 < controllers.size(); ++i) {
+ const std::string& display_name =
+ controllers[i]->user().GetDisplayName();
+ bool show_tooltip = visible_display_names[display_name] > 1;
+ controllers[i]->EnableNameTooltip(show_tooltip);
+ }
}
} // namespace
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/user_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698