| Index: chrome/browser/ui/app_list/app_list_util.cc | 
| diff --git a/chrome/browser/ui/app_list/app_list_util.cc b/chrome/browser/ui/app_list/app_list_util.cc | 
| index de396d52b7bef2283331bb9c4f46b6dba9e7deaa..12d1b5b5288e821b7a26c5ff4241db04a53da057 100644 | 
| --- a/chrome/browser/ui/app_list/app_list_util.cc | 
| +++ b/chrome/browser/ui/app_list/app_list_util.cc | 
| @@ -8,6 +8,7 @@ | 
| #include "build/build_config.h" | 
| #include "chrome/browser/browser_process.h" | 
| #include "chrome/browser/extensions/extension_prefs.h" | 
| +#include "chrome/browser/prefs/pref_registry_simple.h" | 
| #include "chrome/browser/prefs/pref_service.h" | 
| #include "chrome/common/chrome_constants.h" | 
| #include "chrome/common/pref_names.h" | 
| @@ -41,8 +42,8 @@ FilePath GetAppListProfilePath(const FilePath& user_data_dir) { | 
| return user_data_dir.AppendASCII(profile_path); | 
| } | 
|  | 
| -void RegisterAppListPrefs(PrefServiceSimple* prefs) { | 
| -  prefs->RegisterStringPref(prefs::kAppListProfile, ""); | 
| +void RegisterAppListPrefs(PrefRegistrySimple* registry) { | 
| +  registry->RegisterStringPref(prefs::kAppListProfile, ""); | 
| } | 
| #endif  // defined(ENABLE_APP_LIST) | 
|  | 
|  |