diff options
Diffstat (limited to 'base/json_reader.cc')
-rw-r--r-- | base/json_reader.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/base/json_reader.cc b/base/json_reader.cc index e4dc61c..b5013ef 100644 --- a/base/json_reader.cc +++ b/base/json_reader.cc @@ -277,8 +277,7 @@ Value* JSONReader::BuildValue(bool is_root) { Value* dict_value = BuildValue(false); if (!dict_value) return NULL; - static_cast<DictionaryValue*>(node.get())->Set( - WideToUTF16Hack(dict_key), dict_value); + static_cast<DictionaryValue*>(node.get())->Set(dict_key, dict_value); // After a key/value pair, we expect a comma or the end of the // object. |