Index: chrome/browser/chromeos/system/name_value_pairs_parser.cc |
diff --git a/chrome/browser/chromeos/system/name_value_pairs_parser.cc b/chrome/browser/chromeos/system/name_value_pairs_parser.cc |
index 88f1d4846be68d05ec464f8cb734ce017440b9f1..2c89e7c6340ce679ac2a0febe2be6fb6e8ff899f 100644 |
--- a/chrome/browser/chromeos/system/name_value_pairs_parser.cc |
+++ b/chrome/browser/chromeos/system/name_value_pairs_parser.cc |
@@ -10,8 +10,8 @@ |
#include "base/logging.h" |
#include "base/process_util.h" |
#include "base/stl_util.h" |
-#include "base/string_tokenizer.h" |
#include "base/string_util.h" |
+#include "base/strings/string_tokenizer.h" |
namespace chromeos { // NOLINT |
namespace system { |
@@ -70,7 +70,7 @@ bool NameValuePairsParser::ParseNameValuePairsWithComments( |
const std::string& comment_delim) { |
bool all_valid = true; |
// Set up the pair tokenizer. |
- StringTokenizer pair_toks(in_string, delim); |
+ base::StringTokenizer pair_toks(in_string, delim); |
pair_toks.set_quote_chars(kQuoteChars); |
// Process token pairs. |
while (pair_toks.GetNext()) { |