Index: webkit/glue/webkit_glue.cc |
diff --git a/webkit/glue/webkit_glue.cc b/webkit/glue/webkit_glue.cc |
index 779af5f39c39ed226fef88d8eb710b6a4cf3acae..b7876acd40ec851af0ed926f3a63ef191d282a19 100644 |
--- a/webkit/glue/webkit_glue.cc |
+++ b/webkit/glue/webkit_glue.cc |
@@ -22,9 +22,9 @@ |
#include "base/path_service.h" |
#include "base/process_util.h" |
#include "base/string_piece.h" |
-#include "base/string_tokenizer.h" |
#include "base/string_util.h" |
#include "base/stringprintf.h" |
+#include "base/strings/string_tokenizer.h" |
#include "base/sys_info.h" |
#include "base/utf_string_conversions.h" |
#include "net/base/escape.h" |
@@ -97,7 +97,7 @@ void SetJavaScriptFlags(const std::string& str) { |
void EnableWebCoreLogChannels(const std::string& channels) { |
if (channels.empty()) |
return; |
- StringTokenizer t(channels, ", "); |
+ base::StringTokenizer t(channels, ", "); |
while (t.GetNext()) { |
WebKit::enableLogChannel(t.token().c_str()); |
} |