Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MOJO_SERVICES_MEDIA_FRAMEWORK_TEST_TEST_BASE_H_ | 5 #ifndef MOJO_SERVICES_UTIL_CPP_TEST_TEST_BASE_H_ |
| 6 #define MOJO_SERVICES_MEDIA_FRAMEWORK_TEST_TEST_BASE_H_ | 6 #define MOJO_SERVICES_UTIL_CPP_TEST_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include "mojo/public/cpp/application/application_test_base.h" | 8 #include "mojo/public/cpp/application/application_test_base.h" |
| 9 | 9 |
| 10 namespace mojo { | 10 namespace mojo { |
| 11 namespace media { | |
| 12 namespace { | 11 namespace { |
|
viettrungluu
2016/05/31 23:37:01
I'm not sure what the value of the added class is.
| |
| 13 | 12 |
| 14 class TestBase : public test::ApplicationTestBase { | 13 class TestBase : public test::ApplicationTestBase { |
| 15 public: | 14 public: |
| 16 TestBase() {} | 15 TestBase() {} |
| 17 ~TestBase() override {} | 16 ~TestBase() override {} |
| 18 | 17 |
| 19 private: | 18 private: |
| 20 MOJO_DISALLOW_COPY_AND_ASSIGN(TestBase); | 19 MOJO_DISALLOW_COPY_AND_ASSIGN(TestBase); |
| 21 }; | 20 }; |
| 22 | 21 |
| 23 } // namespace | 22 } // namespace |
| 24 } // namespace media | |
| 25 } // namespace mojo | 23 } // namespace mojo |
| 26 | 24 |
| 27 #endif // MOJO_SERVICES_MEDIA_FRAMEWORK_TEST_TEST_BASE_H_ | 25 #endif // MOJO_SERVICES_UTIL_CPP_TEST_TEST_BASE_H_ |
| OLD | NEW |