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

Unified Diff: content/public/test/ppapi_test_utils.cc

Issue 1140953003: PPAPI Testing: Clean up location of ppapi::StripTestPrefixes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to shared_impl Created 5 years, 7 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
Index: content/public/test/ppapi_test_utils.cc
diff --git a/content/public/test/ppapi_test_utils.cc b/content/public/test/ppapi_test_utils.cc
index 7852d3154eec6eb289bb8edf53bced8bb596afd4..0c9e5455c26ebe65a8d84fe06b01dc17634e51c4 100644
--- a/content/public/test/ppapi_test_utils.cc
+++ b/content/public/test/ppapi_test_utils.cc
@@ -38,12 +38,6 @@ bool RegisterPlugin(
} // namespace
-std::string StripTestPrefixes(const std::string& test_name) {
- if (test_name.find("DISABLED_") == 0)
- return test_name.substr(strlen("DISABLED_"));
- return test_name;
-}
-
bool RegisterTestPlugin(base::CommandLine* command_line) {
return RegisterTestPluginWithExtraParameters(command_line,
FILE_PATH_LITERAL(""));

Powered by Google App Engine
This is Rietveld 408576698