Index: chrome/browser/profiles/profile_metrics.cc |
diff --git a/chrome/browser/profiles/profile_metrics.cc b/chrome/browser/profiles/profile_metrics.cc |
index b04c2377fe7a8b511c443746ccf6bcf521cb9c6f..feb19220d30e21a159e97a836846de39a37f56a0 100644 |
--- a/chrome/browser/profiles/profile_metrics.cc |
+++ b/chrome/browser/profiles/profile_metrics.cc |
@@ -107,8 +107,9 @@ enum ProfileAvatar { |
AVATAR_MARGARITA, |
AVATAR_NOTE, |
AVATAR_SUN_CLOUD, |
- AVATAR_UNKNOWN, // 26 |
- AVATAR_GAIA, // 27 |
+ AVATAR_PLACEHOLDER, |
+ AVATAR_UNKNOWN, // 27 |
+ AVATAR_GAIA, // 28 |
NUM_PROFILE_AVATAR_METRICS |
}; |
@@ -237,7 +238,10 @@ void ProfileMetrics::LogProfileAvatarSelection(size_t icon_index) { |
case 25: |
icon_name = AVATAR_SUN_CLOUD; |
break; |
- case 27: |
+ case 26: |
+ icon_name = AVATAR_PLACEHOLDER; |
+ break; |
+ case 28: |
icon_name = AVATAR_GAIA; |
break; |
default: // We should never actually get here. |