OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_SHELLTEST_BASE_H_ | 5 #ifndef SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_SHELLTEST_BASE_H_ |
6 #define SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_SHELLTEST_BASE_H_ | 6 #define SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_SHELLTEST_BASE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "services/shell/public/cpp/connection.h" | 9 #include "services/shell/public/cpp/connection.h" |
10 #include "services/shell/public/cpp/service_test.h" | 10 #include "services/shell/public/cpp/service_test.h" |
11 | 11 |
12 namespace ui { | 12 namespace ui { |
13 | 13 |
14 // Base class for all window manager ServiceTests to perform some common setup. | 14 // Base class for all window manager ServiceTests to perform some common setup. |
15 class WindowServerServiceTestBase : public shell::test::ServiceTest { | 15 class WindowServerServiceTestBase : public shell::test::ServiceTest { |
16 public: | 16 public: |
17 WindowServerServiceTestBase(); | 17 WindowServerServiceTestBase(); |
18 ~WindowServerServiceTestBase() override; | 18 ~WindowServerServiceTestBase() override; |
19 | 19 |
20 virtual bool OnConnect(shell::Connection* connection) = 0; | 20 virtual bool OnConnect(const shell::Identity& remote_identity, |
| 21 shell::InterfaceRegistry* registry) = 0; |
21 | 22 |
22 private: | 23 private: |
23 // shell::test::ServiceTest: | 24 // shell::test::ServiceTest: |
24 std::unique_ptr<shell::Service> CreateService() override; | 25 std::unique_ptr<shell::Service> CreateService() override; |
25 | 26 |
26 DISALLOW_COPY_AND_ASSIGN(WindowServerServiceTestBase); | 27 DISALLOW_COPY_AND_ASSIGN(WindowServerServiceTestBase); |
27 }; | 28 }; |
28 | 29 |
29 } // namespace ui | 30 } // namespace ui |
30 | 31 |
31 #endif // SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_SHELLTEST_BASE_H_ | 32 #endif // SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_SHELLTEST_BASE_H_ |
OLD | NEW |