| Index: chrome/browser/ui/webui/signin/signin_create_profile_handler.cc
|
| diff --git a/chrome/browser/ui/webui/signin/signin_create_profile_handler.cc b/chrome/browser/ui/webui/signin/signin_create_profile_handler.cc
|
| index 502f9110ff249ccb056fd29f0441cfc1d5ff52f4..756f5ce95bd84165c97921fcea2eb7feff344a8f 100644
|
| --- a/chrome/browser/ui/webui/signin/signin_create_profile_handler.cc
|
| +++ b/chrome/browser/ui/webui/signin/signin_create_profile_handler.cc
|
| @@ -152,10 +152,10 @@ void SigninCreateProfileHandler::RequestDefaultProfileIcons(
|
| }
|
|
|
| void SigninCreateProfileHandler::SendNewProfileDefaults() {
|
| - ProfileAttributesStorage& storage =
|
| - g_browser_process->profile_manager()->GetProfileAttributesStorage();
|
| + ProfileInfoCache& cache =
|
| + g_browser_process->profile_manager()->GetProfileInfoCache();
|
| base::DictionaryValue profile_info;
|
| - profile_info.SetString("name", storage.ChooseNameForNewProfile(0));
|
| + profile_info.SetString("name", cache.ChooseNameForNewProfile(0));
|
|
|
| web_ui()->CallJavascriptFunction(
|
| "cr.webUIListenerCallback",
|
|
|