| 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 64c2fea782080f70ad6dc44cccf33939b2d19428..d1c8344f70c05c3f1322ea527cbff6c0f7236d08 100644 | 
| --- a/chrome/browser/printing/print_dialog_cloud.cc | 
| +++ b/chrome/browser/printing/print_dialog_cloud.cc | 
| @@ -533,11 +533,13 @@ void CreateDialogImpl(const FilePath& path_to_file, | 
| DCHECK(pref_service); | 
| if (!pref_service->FindPreference(prefs::kCloudPrintDialogWidth)) { | 
| pref_service->RegisterIntegerPref(prefs::kCloudPrintDialogWidth, | 
| -                                      kDefaultWidth); | 
| +                                      kDefaultWidth, | 
| +                                      false /* don't sync pref */); | 
| } | 
| if (!pref_service->FindPreference(prefs::kCloudPrintDialogHeight)) { | 
| pref_service->RegisterIntegerPref(prefs::kCloudPrintDialogHeight, | 
| -                                      kDefaultHeight); | 
| +                                      kDefaultHeight, | 
| +                                      false /* don't sync pref */); | 
| } | 
|  | 
| int width = pref_service->GetInteger(prefs::kCloudPrintDialogWidth); | 
|  |