Index: base/json/json_reader.cc |
=================================================================== |
--- base/json/json_reader.cc (revision 32858) |
+++ base/json/json_reader.cc (working copy) |
@@ -281,7 +281,8 @@ |
Value* dict_value = BuildValue(false); |
if (!dict_value) |
return NULL; |
- static_cast<DictionaryValue*>(node.get())->Set(dict_key, dict_value); |
+ static_cast<DictionaryValue*>(node.get())->SetWithoutPathExpansion( |
+ dict_key, dict_value); |
// After a key/value pair, we expect a comma or the end of the |
// object. |