Index: mojo/public/tests/test_support.h |
diff --git a/mojo/public/tests/test_support.h b/mojo/public/tests/test_support.h |
index f4932193ebf8f980786a95bde02a53f2a7b929c0..bddd7a036bf8a49b0aeed659381043d1497ac83d 100644 |
--- a/mojo/public/tests/test_support.h |
+++ b/mojo/public/tests/test_support.h |
@@ -5,23 +5,11 @@ |
#ifndef MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_ |
#define MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_ |
-#include "base/basictypes.h" |
#include "base/callback.h" |
-#include "base/compiler_specific.h" |
-#include "testing/gtest/include/gtest/gtest.h" |
namespace mojo { |
namespace test { |
-class TestBase : public testing::Test { |
- public: |
- TestBase(); |
- virtual ~TestBase(); |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(TestBase); |
-}; |
- |
// Run |single_iteration| an appropriate number of times and report its |
// performance appropriately. (This actually runs |single_iteration| for a fixed |
// amount of time and reports the number of iterations per unit time.) |