| Index: extensions/common/file_util.cc
|
| diff --git a/extensions/common/file_util.cc b/extensions/common/file_util.cc
|
| index e0ce3399c0b5b7aa263c0aa16f4e26ed25842454..399b6e779344b010fda6a65f5ab504bf3972708d 100644
|
| --- a/extensions/common/file_util.cc
|
| +++ b/extensions/common/file_util.cc
|
| @@ -168,8 +168,8 @@ base::DictionaryValue* LoadManifest(
|
| return NULL;
|
| }
|
|
|
| - JSONFileValueSerializer serializer(manifest_path);
|
| - scoped_ptr<base::Value> root(serializer.Deserialize(NULL, error));
|
| + JSONFileValueDeserializer deserializer(manifest_path);
|
| + scoped_ptr<base::Value> root(deserializer.Deserialize(NULL, error));
|
| if (!root.get()) {
|
| if (error->empty()) {
|
| // If |error| is empty, than the file could not be read.
|
|
|