| Index: tools/json_schema_compiler/util.cc
|
| diff --git a/tools/json_schema_compiler/util.cc b/tools/json_schema_compiler/util.cc
|
| index d1eb2e7414cc1c5941f57a211547f554caf357d0..441fc2530772cbd75a1a93536b8084df5ef7f6b1 100644
|
| --- a/tools/json_schema_compiler/util.cc
|
| +++ b/tools/json_schema_compiler/util.cc
|
| @@ -69,20 +69,18 @@ bool PopulateItem(const base::Value& from,
|
| }
|
|
|
| bool PopulateItem(const base::Value& from, std::vector<char>* out) {
|
| - const base::Value* binary = nullptr;
|
| - if (!from.GetAsBinary(&binary))
|
| + if (!from.is_blob())
|
| return false;
|
| - *out = binary->GetBlob();
|
| + *out = from.GetBlob();
|
| return true;
|
| }
|
|
|
| bool PopulateItem(const base::Value& from,
|
| std::vector<char>* out,
|
| base::string16* error) {
|
| - const base::Value* binary = nullptr;
|
| - if (!from.GetAsBinary(&binary))
|
| + if (!from.is_blob())
|
| return ReportError(from, base::Value::Type::BINARY, error);
|
| - *out = binary->GetBlob();
|
| + *out = from.GetBlob();
|
| return true;
|
| }
|
|
|
|
|