OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 SHELL_SHELL_TEST_BASE_H_ | 5 #ifndef MOJO_RUNNER_SHELL_TEST_BASE_H_ |
6 #define SHELL_SHELL_TEST_BASE_H_ | 6 #define MOJO_RUNNER_SHELL_TEST_BASE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "mojo/public/cpp/system/core.h" | 12 #include "mojo/public/cpp/system/core.h" |
13 #include "mojo/shell/context.h" | 13 #include "mojo/runner/context.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 | 15 |
16 class GURL; | 16 class GURL; |
17 | 17 |
18 namespace mojo { | 18 namespace mojo { |
19 namespace shell { | 19 namespace shell { |
20 namespace test { | 20 namespace test { |
21 | 21 |
22 class ShellTestBase : public testing::Test { | 22 class ShellTestBase : public testing::Test { |
23 public: | 23 public: |
(...skipping 25 matching lines...) Expand all Loading... |
49 Context shell_context_; | 49 Context shell_context_; |
50 base::MessageLoop message_loop_; | 50 base::MessageLoop message_loop_; |
51 | 51 |
52 DISALLOW_COPY_AND_ASSIGN(ShellTestBase); | 52 DISALLOW_COPY_AND_ASSIGN(ShellTestBase); |
53 }; | 53 }; |
54 | 54 |
55 } // namespace test | 55 } // namespace test |
56 } // namespace shell | 56 } // namespace shell |
57 } // namespace mojo | 57 } // namespace mojo |
58 | 58 |
59 #endif // SHELL_SHELL_TEST_BASE_H_ | 59 #endif // MOJO_RUNNER_SHELL_TEST_BASE_H_ |
OLD | NEW |