| Index: chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
|
| index 9a0c708cc31907a9e655f062a770fd17f29e1ed1..3e42eada4e83e1f39035794506084ad81a2c9bd1 100644
|
| --- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
|
| +++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc
|
| @@ -125,9 +125,9 @@ bool GetLatestPnaclDirectory(const scoped_refptr<PnaclComponentInstaller>& pci,
|
|
|
| // Read a manifest file in.
|
| base::DictionaryValue* ReadJSONManifest(const base::FilePath& manifest_path) {
|
| - JSONFileValueSerializer serializer(manifest_path);
|
| + JSONFileValueDeserializer deserializer(manifest_path);
|
| std::string error;
|
| - scoped_ptr<base::Value> root(serializer.Deserialize(NULL, &error));
|
| + scoped_ptr<base::Value> root(deserializer.Deserialize(NULL, &error));
|
| if (!root.get())
|
| return NULL;
|
| if (!root->IsType(base::Value::TYPE_DICTIONARY))
|
|
|