| 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 ea6a67a864c35f86eea4c075a24cc2c17b5c48e0..730611c31242de2f00adc7f972994cf3062ba367 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"
|
| @@ -250,9 +251,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)
|
|
|