| Index: chrome/browser/ui/startup/autolaunch_prompt.cc
|
| diff --git a/chrome/browser/ui/startup/autolaunch_prompt.cc b/chrome/browser/ui/startup/autolaunch_prompt.cc
|
| index 8e9736356f075a39abc29a624ba46a317901b2ca..ed05494d80bb846f7bd6a1ddf71555aeb78ad4c1 100644
|
| --- a/chrome/browser/ui/startup/autolaunch_prompt.cc
|
| +++ b/chrome/browser/ui/startup/autolaunch_prompt.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/ui/startup/autolaunch_prompt.h"
|
|
|
| +#include "chrome/browser/prefs/pref_registry_syncable.h"
|
| +
|
| namespace chrome {
|
|
|
| bool ShowAutolaunchPrompt(Browser* browser) {
|
| @@ -11,7 +13,7 @@ bool ShowAutolaunchPrompt(Browser* browser) {
|
| return false;
|
| }
|
|
|
| -void RegisterAutolaunchUserPrefs(PrefServiceSyncable* prefs) {
|
| +void RegisterAutolaunchUserPrefs(PrefRegistrySyncable* registry) {
|
| // Autolaunch is only implemented on Windows right now.
|
| }
|
|
|
|
|