| Index: chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/profile_info_handler.cc b/chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| index 1dcdfd3ba09643d5faa7f11cedcaa4f02fa06412..60f91128272a4d01d4fc538b3374957207592771 100644
|
| --- a/chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/profile_info_handler.cc
|
| @@ -41,7 +41,13 @@ const char ProfileInfoHandler::kProfileStatsCountReadyEventName[] =
|
|
|
| ProfileInfoHandler::ProfileInfoHandler(Profile* profile)
|
| : profile_(profile),
|
| - profile_observer_(this) {}
|
| + profile_observer_(this) {
|
| +#if defined(OS_CHROMEOS)
|
| + // Set up the chrome://userimage/ source.
|
| + content::URLDataSource::Add(profile,
|
| + new chromeos::options::UserImageSource());
|
| +#endif
|
| +}
|
|
|
| ProfileInfoHandler::~ProfileInfoHandler() {}
|
|
|
|
|