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

Unified Diff: chrome/browser/chromeos/login/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 | « chrome/browser/chromeos/login/existing_user_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/user_controller.cc
===================================================================
--- chrome/browser/chromeos/login/user_controller.cc (revision 51124)
+++ chrome/browser/chromeos/login/user_controller.cc (working copy)
@@ -64,6 +64,24 @@
DISALLOW_COPY_AND_ASSIGN(ClickNotifyingWidget);
};
+// Returns tooltip text for user name. Tooltip contains user's display name
+// and his email domain to distinguish this user from the other one with the
+// same display name.
+std::string GetNameTooltip(const UserManager::User& user) {
+ const std::string& email = user.email();
+ size_t at_pos = email.rfind('@');
+ if (at_pos == std::string::npos) {
+ NOTREACHED();
+ return std::string();
+ }
+ size_t domain_start = at_pos + 1;
+ std::string domain = email.substr(domain_start,
+ email.length() - domain_start);
+ return StringPrintf("%s (%s)",
+ user.GetDisplayName().c_str(),
+ domain.c_str());
+}
+
// NativeButton that will always return focus to password field.
class UserEntryNativeButton : public views::NativeButton {
public:
@@ -225,7 +243,7 @@
std::wstring tooltip_text;
if (enable)
- tooltip_text = UTF8ToWide(user_.email());
+ tooltip_text = UTF8ToWide(GetNameTooltip(user_));
if (user_view_)
user_view_->SetTooltipText(tooltip_text);
« no previous file with comments | « chrome/browser/chromeos/login/existing_user_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698