Index: chromeos/network/network_util.cc |
diff --git a/chromeos/network/network_util.cc b/chromeos/network/network_util.cc |
index 6ed6d7d0cb79dbcc4094567c3fc741737e6373e6..c0497ad68e72fa00d688bafa4250c84b368f82c6 100644 |
--- a/chromeos/network/network_util.cc |
+++ b/chromeos/network/network_util.cc |
@@ -4,8 +4,8 @@ |
#include "chromeos/network/network_util.h" |
-#include "base/string_tokenizer.h" |
#include "base/stringprintf.h" |
+#include "base/strings/string_tokenizer.h" |
namespace chromeos { |
@@ -51,7 +51,7 @@ std::string PrefixLengthToNetmask(int32 prefix_length) { |
int32 NetmaskToPrefixLength(const std::string& netmask) { |
int count = 0; |
int prefix_length = 0; |
- StringTokenizer t(netmask, "."); |
+ base::StringTokenizer t(netmask, "."); |
while (t.GetNext()) { |
// If there are more than 4 numbers, then it's invalid. |
if (count == 4) |