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

Side by Side Diff: mojo/shell/shell_test_base.h

Issue 313653005: Mojo: Add an extremely skeletal mojo_shell_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: get rid of extraneous mojo::(shell::)s Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « mojo/shell/desktop/mojo_main.cc ('k') | mojo/shell/shell_test_base.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 2014 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 MOJO_SHELL_SHELL_TEST_BASE_H_
6 #define MOJO_SHELL_SHELL_TEST_BASE_H_
7
8 #include "base/at_exit.h"
9 #include "base/macros.h"
10 #include "mojo/public/cpp/environment/environment.h"
11 #include "testing/gtest/include/gtest/gtest.h"
12
13 namespace mojo {
14 namespace shell {
15 namespace test {
16
17 class ShellTestBase : public testing::Test {
18 public:
19 ShellTestBase();
20 virtual ~ShellTestBase();
21
22 private:
23 base::ShadowingAtExitManager at_exit_manager_;
24 Environment environment_;
25
26 DISALLOW_COPY_AND_ASSIGN(ShellTestBase);
27 };
28
29 } // namespace test
30 } // namespace shell
31 } // namespace mojo
32
33 #endif // MOJO_SYSTEM_SHELL_SHELLASE_H_
OLDNEW
« no previous file with comments | « mojo/shell/desktop/mojo_main.cc ('k') | mojo/shell/shell_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698