OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/compiler_specific.h" | 6 #include "base/compiler_specific.h" |
7 #include "ui/base/resource/resource_bundle.h" | 7 #include "ui/base/resource/resource_bundle.h" |
8 #include "ui/base/ui_base_paths.h" | 8 #include "ui/base/ui_base_paths.h" |
9 #include "ui/compositor/compositor_setup.h" | 9 #include "ui/compositor/compositor_setup.h" |
| 10 #include "ui/compositor/test/compositor_test_support.h" |
10 #include "ui/test/test_suite.h" | 11 #include "ui/test/test_suite.h" |
11 #include "ui/views/view.h" | 12 #include "ui/views/view.h" |
12 | 13 |
13 class MessageCenterTestSuite : public ui::test::UITestSuite { | 14 class MessageCenterTestSuite : public ui::test::UITestSuite { |
14 public: | 15 public: |
15 MessageCenterTestSuite(int argc, char** argv) | 16 MessageCenterTestSuite(int argc, char** argv) |
16 : ui::test::UITestSuite(argc, argv) { | 17 : ui::test::UITestSuite(argc, argv) { |
17 } | 18 } |
18 | 19 |
19 protected: | 20 protected: |
20 virtual void Initialize() OVERRIDE; | 21 virtual void Initialize() OVERRIDE; |
21 virtual void Shutdown() OVERRIDE; | 22 virtual void Shutdown() OVERRIDE; |
22 | 23 |
23 private: | 24 private: |
24 DISALLOW_COPY_AND_ASSIGN(MessageCenterTestSuite); | 25 DISALLOW_COPY_AND_ASSIGN(MessageCenterTestSuite); |
25 }; | 26 }; |
26 | 27 |
27 void MessageCenterTestSuite::Initialize() { | 28 void MessageCenterTestSuite::Initialize() { |
28 ui::test::UITestSuite::Initialize(); | 29 ui::test::UITestSuite::Initialize(); |
29 | 30 |
30 #if !defined(OS_MACOSX) | 31 #if !defined(OS_MACOSX) |
| 32 ui::CompositorTestSupport::Initialize(); |
31 ui::SetupTestCompositor(); | 33 ui::SetupTestCompositor(); |
32 #endif | 34 #endif |
33 } | 35 } |
34 | 36 |
35 void MessageCenterTestSuite::Shutdown() { | 37 void MessageCenterTestSuite::Shutdown() { |
36 ui::test::UITestSuite::Shutdown(); | 38 ui::test::UITestSuite::Shutdown(); |
| 39 |
| 40 #if !defined(OS_MACOSX) |
| 41 ui::CompositorTestSupport::Terminate(); |
| 42 #endif |
37 } | 43 } |
38 | 44 |
39 int main(int argc, char** argv) { | 45 int main(int argc, char** argv) { |
40 return MessageCenterTestSuite(argc, argv).Run(); | 46 return MessageCenterTestSuite(argc, argv).Run(); |
41 } | 47 } |
OLD | NEW |