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

Side by Side Diff: mash/test/mash_test_suite.h

Issue 1994763002: Wires up WorkspaceLayoutManager in mash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: data deps Created 4 years, 7 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 | « mash/BUILD.gn ('k') | mash/test/mash_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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef MASH_TEST_TEST_SUITE_H_
6 #define MASH_TEST_TEST_SUITE_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "base/test/test_discardable_memory_allocator.h"
12 #include "base/test/test_suite.h"
13
14 namespace aura {
15 class Env;
16 }
17
18 namespace mash {
19 namespace test {
20
21 class MashTestSuite : public base::TestSuite {
22 public:
23 MashTestSuite(int argc, char** argv);
24 ~MashTestSuite() override;
25
26 protected:
27 // base::TestSuite:
28 void Initialize() override;
29 void Shutdown() override;
30
31 private:
32 base::TestDiscardableMemoryAllocator discardable_memory_allocator_;
33 std::unique_ptr<aura::Env> env_;
34
35 DISALLOW_COPY_AND_ASSIGN(MashTestSuite);
36 };
37
38 } // namespace test
39 } // namespace mash
40
41 #endif // MASH_TEST_TEST_SUITE_H_
OLDNEW
« no previous file with comments | « mash/BUILD.gn ('k') | mash/test/mash_test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698