Index: ppapi/tests/test_case.cc |
diff --git a/ppapi/tests/test_case.cc b/ppapi/tests/test_case.cc |
index 7ae564e45b4d9a010101a7f377e410ddc2d1f131..733faadbb1600c6944049f64c4b5ff3795e8cd70 100644 |
--- a/ppapi/tests/test_case.cc |
+++ b/ppapi/tests/test_case.cc |
@@ -52,8 +52,8 @@ std::string StripTestCase(const std::string& full_test_name) { |
// the bool indicating whether the test should be run. |
void ParseTestFilter(const std::string& test_filter, |
std::map<std::string, bool>* remaining_tests) { |
- // We can't use base/string_util.h::Tokenize in ppapi, so we have to do it |
- // ourselves. |
+ // We can't use base/strings/string_util.h::Tokenize in ppapi, so we have to |
+ // do it ourselves. |
std::istringstream filter_stream(test_filter); |
std::string current_test; |
while (std::getline(filter_stream, current_test, ',')) { |