| Index: base/test/gtest_xml_unittest_result_printer.h
|
| diff --git a/base/test/gtest_xml_unittest_result_printer.h b/base/test/gtest_xml_unittest_result_printer.h
|
| index cce5e88023a045f0de48486ee35de995a980d3df..c7fb88f3708695eaa3c0c1a92d99f726cd7ea864 100644
|
| --- a/base/test/gtest_xml_unittest_result_printer.h
|
| +++ b/base/test/gtest_xml_unittest_result_printer.h
|
| @@ -25,12 +25,6 @@
|
| // Must be called before adding as a listener. Returns true on success.
|
| bool Initialize(const FilePath& output_file_path) WARN_UNUSED_RESULT;
|
|
|
| - // CHECK/DCHECK failed. Print file/line and message to the xml.
|
| - void OnAssert(const char* file,
|
| - int line,
|
| - const std::string& summary,
|
| - const std::string& message);
|
| -
|
| private:
|
| // testing::EmptyTestEventListener:
|
| void OnTestCaseStart(const testing::TestCase& test_case) override;
|
| @@ -38,11 +32,7 @@
|
| void OnTestEnd(const testing::TestInfo& test_info) override;
|
| void OnTestCaseEnd(const testing::TestCase& test_case) override;
|
|
|
| - void WriteTestPartResult(const char* file,
|
| - int line,
|
| - testing::TestPartResult::Type type,
|
| - const std::string& summary,
|
| - const std::string& message);
|
| + void WriteTestPartResult(const testing::TestPartResult& test_part_result);
|
|
|
| FILE* output_file_;
|
|
|
|
|