summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm
diff options
context:
space:
mode:
authornoms@chromium.org <noms@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-16 06:00:49 +0000
committernoms@chromium.org <noms@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-16 06:02:28 +0000
commit1cdf093d141c058aa026d03a54e8b52a1b61738e (patch)
tree7296e152ea870ad18cd1de8d9ce226b31dc472a1 /chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm
parent00d186051a0998ad002524102cf2931e218fa276 (diff)
downloadchromium_src-1cdf093d141c058aa026d03a54e8b52a1b61738e.zip
chromium_src-1cdf093d141c058aa026d03a54e8b52a1b61738e.tar.gz
chromium_src-1cdf093d141c058aa026d03a54e8b52a1b61738e.tar.bz2
[Profiles] Fix the usage of custom/default names and avatars
(Hopefully for the last time). This is based on treib's patch 476703002 The problem that this CL is fixing is that it was a mess to tell whether a user had a default name/avatar (Lemonade) because we randomly assigned it at a profile creation time (in old, legacy cases), and then they synced it because that's what sync does, or because they did that on purpose. The idea being, of course, that if we randomly called them Lemonade and they have a Gaia name, we should use the latter, but if they synced "bob", we should use the sync name. Ok. Here's how this works now: - there's a preference for the profile name, and a preference "if it's default" - if this preference is not set, we assume this is a legacy created profile, so if it is named First User or Lemonade, the user probably didn't change that. This sets a "kIsUsingDefaultNameKey" preference in the ProfileInfoCache - if the ProfileInfoCache has a profile with a kIsUsingDefaultNameKey, then it uses a Gaia name if it's available. - the moment the user changes the name of a profile, it stops being default. So even if I change the profile name from Lemonade to Pickles, even though Pickles is one of the default profile names, we allow this insanity. - a similar dance is done for the default avatar/gaia avatar, only here we maintain two preferences, because the ProfileInfoCache holds both the gaia and the profile avatar. Profiles, right? <3 BUG=394586 Review URL: https://codereview.chromium.org/476993002 Cr-Commit-Position: refs/heads/master@{#290101} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm')
-rw-r--r--chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm b/chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm
index 5ce2e9e..a14fbef 100644
--- a/chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/profiles/avatar_button_controller_unittest.mm
@@ -17,8 +17,8 @@
#import "chrome/browser/ui/cocoa/profiles/profile_chooser_controller.h"
#include "chrome/common/chrome_switches.h"
#include "components/signin/core/common/profile_management_switches.h"
-
-const char kDefaultProfileName[] = "default";
+#include "grit/generated_resources.h"
+#include "ui/base/l10n/l10n_util.h"
class AvatarButtonControllerTest : public CocoaProfileTest {
public:
@@ -50,7 +50,8 @@ class AvatarButtonControllerTest : public CocoaProfileTest {
TEST_F(AvatarButtonControllerTest, ButtonShown) {
EXPECT_FALSE([view() isHidden]);
- EXPECT_EQ(kDefaultProfileName, base::SysNSStringToUTF8([button() title]));
+ EXPECT_EQ(l10n_util::GetStringUTF16(IDS_SINGLE_PROFILE_DISPLAY_NAME),
+ base::SysNSStringToUTF16([button() title]));
}
TEST_F(AvatarButtonControllerTest, DoubleOpen) {