| Index: chrome/browser/chrome_to_mobile_service.cc
|
| diff --git a/chrome/browser/chrome_to_mobile_service.cc b/chrome/browser/chrome_to_mobile_service.cc
|
| index 59ecee06fdc178be460bce61a824d501ed929695..0d0304c145c8b31c70e45440a19d6554fe4687b8 100644
|
| --- a/chrome/browser/chrome_to_mobile_service.cc
|
| +++ b/chrome/browser/chrome_to_mobile_service.cc
|
| @@ -14,6 +14,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/app/chrome_command_ids.h"
|
| #include "chrome/browser/chrome_to_mobile_service_factory.h"
|
| +#include "chrome/browser/prefs/pref_registry_syncable.h"
|
| #include "chrome/browser/prefs/pref_service.h"
|
| #include "chrome/browser/printing/cloud_print/cloud_print_url.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -249,9 +250,9 @@ bool ChromeToMobileService::UpdateAndGetCommandState(Browser* browser) {
|
| }
|
|
|
| // static
|
| -void ChromeToMobileService::RegisterUserPrefs(PrefServiceSyncable* prefs) {
|
| - prefs->RegisterListPref(prefs::kChromeToMobileDeviceList,
|
| - PrefServiceSyncable::UNSYNCABLE_PREF);
|
| +void ChromeToMobileService::RegisterUserPrefs(PrefRegistrySyncable* registry) {
|
| + registry->RegisterListPref(prefs::kChromeToMobileDeviceList,
|
| + PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| }
|
|
|
| ChromeToMobileService::ChromeToMobileService(Profile* profile)
|
|
|