| Index: base/test/test_suite.h
|
| diff --git a/base/test/test_suite.h b/base/test/test_suite.h
|
| index 82c746eb3c1b687c78cd859f70f0ee485b1294bf..590a18cb750db37bacbe9896af435ea8fa1815e7 100644
|
| --- a/base/test/test_suite.h
|
| +++ b/base/test/test_suite.h
|
| @@ -13,7 +13,6 @@
|
| #include <string>
|
|
|
| #include "base/at_exit.h"
|
| -#include "base/logging.h"
|
| #include "base/macros.h"
|
| #include "base/test/trace_to_file.h"
|
| #include "build/build_config.h"
|
| @@ -23,8 +22,6 @@
|
| }
|
|
|
| namespace base {
|
| -
|
| -class XmlUnitTestResultPrinter;
|
|
|
| // Instantiates TestSuite, runs it and returns exit code.
|
| int RunUnitTestsUsingBaseTestSuite(int argc, char **argv);
|
| @@ -57,10 +54,7 @@
|
| // By default fatal log messages (e.g. from DCHECKs) result in error dialogs
|
| // which gum up buildbots. Use a minimalistic assert handler which just
|
| // terminates the process.
|
| - void UnitTestAssertHandler(const char* file,
|
| - int line,
|
| - const base::StringPiece summary,
|
| - const base::StringPiece stack_trace);
|
| + static void UnitTestAssertHandler(const std::string& str);
|
|
|
| // Disable crash dialogs so that it doesn't gum up the buildbot
|
| virtual void SuppressErrorDialogs();
|
| @@ -90,10 +84,6 @@
|
|
|
| bool created_feature_list_;
|
|
|
| - XmlUnitTestResultPrinter* printer_ = nullptr;
|
| -
|
| - std::unique_ptr<logging::ScopedLogAssertHandler> assert_handler_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(TestSuite);
|
| };
|
|
|
|
|