Index: mojo/public/cpp/test_support/test_support.h |
diff --git a/mojo/public/cpp/test_support/test_support.h b/mojo/public/cpp/test_support/test_support.h |
index eb4d4be7116a7f3fac94b633702f60abafde628e..9a536e649f848f11223bb18b86b40988968594af 100644 |
--- a/mojo/public/cpp/test_support/test_support.h |
+++ b/mojo/public/cpp/test_support/test_support.h |
@@ -14,9 +14,10 @@ namespace mojo { |
namespace test { |
inline void LogPerfResult(const char* test_name, |
+ const char* sub_test_name, |
double value, |
const char* units) { |
- MojoTestSupportLogPerfResult(test_name, value, units); |
+ MojoTestSupportLogPerfResult(test_name, sub_test_name, value, units); |
} |
// Opens text file relative to the source root for reading. |