| Index: base/json/json_writer.cc
|
| diff --git a/base/json/json_writer.cc b/base/json/json_writer.cc
|
| index 9ca481301fe15da7e210fc60d7b2ede2c7aa60e7..e8cf9ac861b606fcc1e0e4985a590c180459d112 100644
|
| --- a/base/json/json_writer.cc
|
| +++ b/base/json/json_writer.cc
|
| @@ -139,7 +139,7 @@ void JSONWriter::BuildJSONString(const Value* const node, int depth) {
|
|
|
| const ListValue* list = static_cast<const ListValue*>(node);
|
| for (size_t i = 0; i < list->GetSize(); ++i) {
|
| - Value* value = NULL;
|
| + const Value* value = NULL;
|
| bool result = list->Get(i, &value);
|
| DCHECK(result);
|
|
|
|
|