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 #include "services/ui/ws/window_server_service_test_base.h" | 5 #include "services/ui/ws/window_server_service_test_base.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 class WindowServerServiceTestClient | 23 class WindowServerServiceTestClient |
24 : public service_manager::test::ServiceTestClient { | 24 : public service_manager::test::ServiceTestClient { |
25 public: | 25 public: |
26 explicit WindowServerServiceTestClient(WindowServerServiceTestBase* test) | 26 explicit WindowServerServiceTestClient(WindowServerServiceTestBase* test) |
27 : ServiceTestClient(test), test_(test) {} | 27 : ServiceTestClient(test), test_(test) {} |
28 ~WindowServerServiceTestClient() override {} | 28 ~WindowServerServiceTestClient() override {} |
29 | 29 |
30 private: | 30 private: |
31 // service_manager::test::ServiceTestClient: | 31 // service_manager::test::ServiceTestClient: |
32 void OnBindInterface(const service_manager::ServiceInfo& source_info, | 32 void OnBindInterface(const service_manager::BindSourceInfo& source_info, |
33 const std::string& interface_name, | 33 const std::string& interface_name, |
34 mojo::ScopedMessagePipeHandle interface_pipe) override { | 34 mojo::ScopedMessagePipeHandle interface_pipe) override { |
35 test_->OnBindInterface(source_info, interface_name, | 35 test_->OnBindInterface(source_info, interface_name, |
36 std::move(interface_pipe)); | 36 std::move(interface_pipe)); |
37 } | 37 } |
38 | 38 |
39 WindowServerServiceTestBase* test_; | 39 WindowServerServiceTestBase* test_; |
40 | 40 |
41 DISALLOW_COPY_AND_ASSIGN(WindowServerServiceTestClient); | 41 DISALLOW_COPY_AND_ASSIGN(WindowServerServiceTestClient); |
42 }; | 42 }; |
(...skipping 13 matching lines...) Expand all Loading... |
56 } | 56 } |
57 | 57 |
58 WindowServerServiceTestBase::~WindowServerServiceTestBase() {} | 58 WindowServerServiceTestBase::~WindowServerServiceTestBase() {} |
59 | 59 |
60 std::unique_ptr<service_manager::Service> | 60 std::unique_ptr<service_manager::Service> |
61 WindowServerServiceTestBase::CreateService() { | 61 WindowServerServiceTestBase::CreateService() { |
62 return base::MakeUnique<WindowServerServiceTestClient>(this); | 62 return base::MakeUnique<WindowServerServiceTestClient>(this); |
63 } | 63 } |
64 | 64 |
65 } // namespace ui | 65 } // namespace ui |
OLD | NEW |