| Index: chrome/browser/printing/print_dialog_cloud.cc
|
| diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc
|
| index 689da2dfb7bc4ab455c4c96a039ed104ea3a297b..9978386ef968cba635cdb752d4ecc5404619a8c4 100644
|
| --- a/chrome/browser/printing/print_dialog_cloud.cc
|
| +++ b/chrome/browser/printing/print_dialog_cloud.cc
|
| @@ -532,14 +532,16 @@ void GetDialogWidthAndHeightFromPrefs(content::BrowserContext* browser_context,
|
|
|
| Profile* profile = Profile::FromBrowserContext(browser_context);
|
| if (!profile->GetPrefs()->FindPreference(prefs::kCloudPrintDialogWidth)) {
|
| - profile->GetPrefs()->RegisterIntegerPref(prefs::kCloudPrintDialogWidth,
|
| - kDefaultWidth,
|
| - PrefService::UNSYNCABLE_PREF);
|
| + profile->GetPrefs()->RegisterIntegerPref(
|
| + prefs::kCloudPrintDialogWidth,
|
| + kDefaultWidth,
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| }
|
| if (!profile->GetPrefs()->FindPreference(prefs::kCloudPrintDialogHeight)) {
|
| - profile->GetPrefs()->RegisterIntegerPref(prefs::kCloudPrintDialogHeight,
|
| - kDefaultHeight,
|
| - PrefService::UNSYNCABLE_PREF);
|
| + profile->GetPrefs()->RegisterIntegerPref(
|
| + prefs::kCloudPrintDialogHeight,
|
| + kDefaultHeight,
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| }
|
|
|
| *width = profile->GetPrefs()->GetInteger(prefs::kCloudPrintDialogWidth);
|
|
|