diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-29 19:59:08 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-29 19:59:08 +0000 |
commit | b4cebf87816cde49f6d4991ffa254e5ead97703b (patch) | |
tree | fb12e4b464a43af846f30bbd0dbe9484150373b0 /chrome/browser/extensions/extensions_service.cc | |
parent | 45ce59f19161b517c04a4e3bcd0890b938382b06 (diff) | |
download | chromium_src-b4cebf87816cde49f6d4991ffa254e5ead97703b.zip chromium_src-b4cebf87816cde49f6d4991ffa254e5ead97703b.tar.gz chromium_src-b4cebf87816cde49f6d4991ffa254e5ead97703b.tar.bz2 |
Change the signature of JSONReader::Read() and related
methods to be more friendly to use with scoped_ptr. Change
all the callsites.
Review URL: http://codereview.chromium.org/16270
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7486 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extensions_service.cc')
-rw-r--r-- | chrome/browser/extensions/extensions_service.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc index cd0397c..f38ff04 100644 --- a/chrome/browser/extensions/extensions_service.cc +++ b/chrome/browser/extensions/extensions_service.cc @@ -88,15 +88,14 @@ bool ExtensionsServiceBackend::LoadExtensionsFromDirectory( } JSONFileValueSerializer serializer(manifest_path.ToWStringHack()); - Value* root = NULL; std::string error; - if (!serializer.Deserialize(&root, &error)) { + scoped_ptr<Value> root(serializer.Deserialize(&error)); + if (!root.get()) { ReportExtensionLoadError(frontend.get(), child_path.ToWStringHack(), error); continue; } - scoped_ptr<Value> scoped_root(root); if (!root->IsType(Value::TYPE_DICTIONARY)) { ReportExtensionLoadError(frontend.get(), child_path.ToWStringHack(), Extension::kInvalidManifestError); @@ -104,7 +103,7 @@ bool ExtensionsServiceBackend::LoadExtensionsFromDirectory( } scoped_ptr<Extension> extension(new Extension(child_path)); - if (!extension->InitFromValue(*static_cast<DictionaryValue*>(root), + if (!extension->InitFromValue(*static_cast<DictionaryValue*>(root.get()), &error)) { ReportExtensionLoadError(frontend.get(), child_path.ToWStringHack(), error); |