| Index: base/json/json_writer.cc
|
| diff --git a/base/json/json_writer.cc b/base/json/json_writer.cc
|
| index fa8f2398cbb8292b77c6ffddb68e51896543d349..65317724dba7102670cb3f75a72bc0bea982578a 100644
|
| --- a/base/json/json_writer.cc
|
| +++ b/base/json/json_writer.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/json/string_escape.h"
|
| #include "base/logging.h"
|
| -#include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/string_number_conversions.h"
|
| #include "base/values.h"
|
| #include "base/utf_string_conversions.h"
|
| @@ -71,7 +71,7 @@ void JSONWriter::BuildJSONString(const Value* const node,
|
| int value;
|
| bool result = node->GetAsInteger(&value);
|
| DCHECK(result);
|
| - StringAppendF(json_string_, "%d", value);
|
| + base::StringAppendF(json_string_, "%d", value);
|
| break;
|
| }
|
|
|
|
|