summaryrefslogtreecommitdiffstats
path: root/extensions/utility
diff options
context:
space:
mode:
authorprashhir <prashhir@cisco.com>2015-03-05 01:30:57 -0800
committerCommit bot <commit-bot@chromium.org>2015-03-05 09:31:42 +0000
commit54a99450c633d64842217b10fa6841b2a3e7eb77 (patch)
tree743fdd828070286b7fb0223d140e4ded87954b13 /extensions/utility
parent60cab6b4116a9c297795d6e32dc30c28f67a959e (diff)
downloadchromium_src-54a99450c633d64842217b10fa6841b2a3e7eb77.zip
chromium_src-54a99450c633d64842217b10fa6841b2a3e7eb77.tar.gz
chromium_src-54a99450c633d64842217b10fa6841b2a3e7eb77.tar.bz2
Split ValueSerializer into separate Serializer and Deserializer classes.
This CL removes the Deserializer functionality from ValueSerializer, and puts into separate class ValueDeserializer, so that class responsibility is maintained. BUG=455453 TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/925783002 Cr-Commit-Position: refs/heads/master@{#319239}
Diffstat (limited to 'extensions/utility')
-rw-r--r--extensions/utility/unpacker.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/utility/unpacker.cc b/extensions/utility/unpacker.cc
index d244ba5..c61faa2 100644
--- a/extensions/utility/unpacker.cc
+++ b/extensions/utility/unpacker.cc
@@ -118,9 +118,9 @@ base::DictionaryValue* Unpacker::ReadManifest() {
return NULL;
}
- 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()) {
SetError(error);
return NULL;
@@ -270,9 +270,9 @@ bool Unpacker::AddDecodedImage(const base::FilePath& path) {
bool Unpacker::ReadMessageCatalog(const base::FilePath& message_path) {
std::string error;
- JSONFileValueSerializer serializer(message_path);
+ JSONFileValueDeserializer deserializer(message_path);
scoped_ptr<base::DictionaryValue> root(static_cast<base::DictionaryValue*>(
- serializer.Deserialize(NULL, &error)));
+ deserializer.Deserialize(NULL, &error)));
if (!root.get()) {
base::string16 messages_file = message_path.LossyDisplayName();
if (error.empty()) {