| 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 fe2e255bca93674713432a85f1078db23aec06b0..e01c1f1b6c04abc64ca2be78abad0d45fdada961 100644
|
| --- a/chrome/browser/printing/print_dialog_cloud.cc
|
| +++ b/chrome/browser/printing/print_dialog_cloud.cc
|
| @@ -107,10 +107,9 @@ namespace internal_cloud_print_helpers {
|
| bool GetPageSetupParameters(const std::string& json,
|
| PrintMsg_Print_Params& parameters) {
|
| scoped_ptr<Value> parsed_value(base::JSONReader::Read(json, false));
|
| - DLOG_IF(ERROR, (!parsed_value.get() ||
|
| - !parsed_value->IsType(Value::TYPE_DICTIONARY)))
|
| + DLOG_IF(ERROR, (!parsed_value.get() || !parsed_value->IsDictionary()))
|
| << "PageSetup call didn't have expected contents";
|
| - if (!parsed_value.get() || !parsed_value->IsType(Value::TYPE_DICTIONARY))
|
| + if (!parsed_value.get() || !parsed_value->IsDictionary())
|
| return false;
|
|
|
| bool result = true;
|
|
|