Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: ppapi/tests/test_case.cc

Issue 16366009: Use a direct include of strings headers in ppapi/, printing/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wrap comment Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/shared_impl/var.cc ('k') | ppapi/thunk/enter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, ',')) {
« no previous file with comments | « ppapi/shared_impl/var.cc ('k') | ppapi/thunk/enter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698