Index: base/test/launcher/test_launcher.h |
diff --git a/base/test/launcher/test_launcher.h b/base/test/launcher/test_launcher.h |
index 8c72ee71404dfd7caa9b23634cca5072d6efe196..78a854b599796c552a22c1dec317c9618aeca80b 100644 |
--- a/base/test/launcher/test_launcher.h |
+++ b/base/test/launcher/test_launcher.h |
@@ -43,8 +43,8 @@ class TestLauncherDelegate { |
// Called before a test is considered for running. If it returns false, |
// the test is not run. If it returns true, the test will be run provided |
// it is part of the current shard. |
- virtual bool ShouldRunTest(const testing::TestCase* test_case, |
- const testing::TestInfo* test_info) = 0; |
+ virtual bool ShouldRunTest(const std::string& test_case_name, |
+ const std::string& test_name) = 0; |
// Called to make the delegate run the specified tests. The delegate must |
// return the number of actual tests it's going to run (can be smaller, |