Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: ash/test/ash_test_suite.h

Issue 2788463003: Adds ability for ash_unittests to run in mushrome mode (Closed)
Patch Set: feedback Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/test/ash_test_helper.cc ('k') | ash/test/ash_test_suite.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 ASH_TEST_ASH_TEST_SUITE_H_ 5 #ifndef ASH_TEST_ASH_TEST_SUITE_H_
6 #define ASH_TEST_ASH_TEST_SUITE_H_ 6 #define ASH_TEST_ASH_TEST_SUITE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/test/test_discardable_memory_allocator.h" 11 #include "base/test/test_discardable_memory_allocator.h"
12 #include "base/test/test_suite.h" 12 #include "base/test/test_suite.h"
13 #include "ui/aura/env.h" 13 #include "ui/aura/env.h"
14 14
15 namespace ui {
16 class FakeContextFactory;
17 }
18
15 namespace ash { 19 namespace ash {
16 namespace test { 20 namespace test {
17 21
18 class AshTestSuite : public base::TestSuite { 22 class AshTestSuite : public base::TestSuite {
19 public: 23 public:
20 AshTestSuite(int argc, char** argv); 24 AshTestSuite(int argc, char** argv);
21 ~AshTestSuite() override; 25 ~AshTestSuite() override;
22 26
23 protected: 27 protected:
24 // base::TestSuite: 28 // base::TestSuite:
25 void Initialize() override; 29 void Initialize() override;
26 void Shutdown() override; 30 void Shutdown() override;
27 31
28 private: 32 private:
29 std::unique_ptr<aura::Env> env_; 33 std::unique_ptr<aura::Env> env_;
30 34
31 base::TestDiscardableMemoryAllocator discardable_memory_allocator_; 35 base::TestDiscardableMemoryAllocator discardable_memory_allocator_;
32 36
37 // Only used when running in Config::MUS, and is set as the context_factory
38 // on aura::Env.
39 std::unique_ptr<ui::FakeContextFactory> context_factory_;
40
33 DISALLOW_COPY_AND_ASSIGN(AshTestSuite); 41 DISALLOW_COPY_AND_ASSIGN(AshTestSuite);
34 }; 42 };
35 43
36 } // namespace test 44 } // namespace test
37 } // namespace ash 45 } // namespace ash
38 46
39 #endif // ASH_TEST_ASH_TEST_SUITE_H_ 47 #endif // ASH_TEST_ASH_TEST_SUITE_H_
OLDNEW
« no previous file with comments | « ash/test/ash_test_helper.cc ('k') | ash/test/ash_test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698