Index: chrome/browser/ui/passwords/password_bubble_experiment.cc |
diff --git a/chrome/browser/ui/passwords/password_bubble_experiment.cc b/chrome/browser/ui/passwords/password_bubble_experiment.cc |
index 5bd1b91f33ccfa018672035e5f36b559f4ebcaed..aca8198c6e8caea6cbbdaff564305ad51bb699cf 100644 |
--- a/chrome/browser/ui/passwords/password_bubble_experiment.cc |
+++ b/chrome/browser/ui/passwords/password_bubble_experiment.cc |
@@ -12,7 +12,7 @@ |
namespace password_bubble_experiment { |
namespace { |
-const char kBrandingExperimentName[] = "PasswordBubbleBranding"; |
+const char kBrandingExperimentName[] = "PasswordBranding"; |
const char kSmartLockBrandingGroupName[] = "SmartLockBranding"; |
} // namespace |
@@ -23,7 +23,7 @@ void RecordBubbleClosed( |
// TODO(vasilii): store the statistics. |
} |
-bool IsEnabledSmartLockBranding(Profile* profile) { |
+bool IsSmartLockBrandingEnabled(Profile* profile) { |
const ProfileSyncService* sync_service = |
ProfileSyncServiceFactory::GetForProfile(profile); |
return password_manager_util::GetPasswordSyncState(sync_service) == |
@@ -32,5 +32,4 @@ bool IsEnabledSmartLockBranding(Profile* profile) { |
kSmartLockBrandingGroupName; |
} |
- |
} // namespace password_bubble_experiment |