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 MOJO_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_ | 5 #ifndef SERVICES_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_ |
6 #define MOJO_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_ | 6 #define SERVICES_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "mojo/public/cpp/bindings/array.h" | 10 #include "mojo/public/cpp/bindings/array.h" |
11 #include "mojo/public/cpp/bindings/string.h" | 11 #include "mojo/public/cpp/bindings/string.h" |
12 #include "mojo/shell/public/cpp/connector.h" | 12 #include "services/shell/public/cpp/connector.h" |
13 #include "mojo/shell/public/cpp/shell_client.h" | 13 #include "services/shell/public/cpp/shell_client.h" |
14 #include "mojo/shell/public/cpp/shell_connection.h" | 14 #include "services/shell/public/cpp/shell_connection.h" |
15 #include "mojo/shell/public/interfaces/shell_client.mojom.h" | 15 #include "services/shell/public/interfaces/shell_client.mojom.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
17 | 17 |
18 namespace mojo { | 18 namespace mojo { |
19 | 19 |
20 class ShellConnection; | 20 class ShellConnection; |
21 | 21 |
22 namespace test { | 22 namespace test { |
23 | 23 |
24 // Run all application tests. This must be called after the environment is | 24 // Run all application tests. This must be called after the environment is |
25 // initialized, to support construction of a default run loop. | 25 // initialized, to support construction of a default run loop. |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 std::string empty_; | 90 std::string empty_; |
91 std::string inherit_user_id_ = shell::mojom::kInheritUserID; | 91 std::string inherit_user_id_ = shell::mojom::kInheritUserID; |
92 | 92 |
93 DISALLOW_COPY_AND_ASSIGN(ApplicationTestBase); | 93 DISALLOW_COPY_AND_ASSIGN(ApplicationTestBase); |
94 }; | 94 }; |
95 | 95 |
96 } // namespace test | 96 } // namespace test |
97 | 97 |
98 } // namespace mojo | 98 } // namespace mojo |
99 | 99 |
100 #endif // MOJO_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_ | 100 #endif // SERVICES_SHELL_PUBLIC_CPP_APPLICATION_TEST_BASE_H_ |
OLD | NEW |