summaryrefslogtreecommitdiffstats
path: root/base/json/json_reader.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/json/json_reader.cc')
-rw-r--r--base/json/json_reader.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/base/json/json_reader.cc b/base/json/json_reader.cc
index 82bc7d4..b286995 100644
--- a/base/json/json_reader.cc
+++ b/base/json/json_reader.cc
@@ -7,6 +7,7 @@
#include "base/float_util.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
+#include "base/stringprintf.h"
#include "base/string_number_conversions.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
@@ -189,8 +190,8 @@ Value* JSONReader::JsonToValue(const std::string& json, bool check_root,
std::string JSONReader::FormatErrorMessage(int line, int column,
const std::string& description) {
if (line || column) {
- return StringPrintf("Line: %i, column: %i, %s",
- line, column, description.c_str());
+ return base::StringPrintf(
+ "Line: %i, column: %i, %s", line, column, description.c_str());
}
return description;
}