| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "content/shell/utility/shell_content_utility_client.h" | 5 #include "content/shell/utility/shell_content_utility_client.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/files/scoped_temp_dir.h" | 11 #include "base/files/scoped_temp_dir.h" |
| 12 #include "base/process/process.h" | 12 #include "base/process/process.h" |
| 13 #include "content/public/test/test_service.h" | 13 #include "content/public/test/test_service.h" |
| 14 #include "content/public/test/test_service.mojom.h" | 14 #include "content/public/test/test_service.mojom.h" |
| 15 #include "mojo/public/cpp/bindings/strong_binding.h" | 15 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 16 #include "mojo/public/cpp/system/buffer.h" | 16 #include "mojo/public/cpp/system/buffer.h" |
| 17 #include "services/shell/public/cpp/interface_registry.h" | 17 #include "services/service_manager/public/cpp/interface_registry.h" |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 class TestServiceImpl : public mojom::TestService { | 23 class TestServiceImpl : public mojom::TestService { |
| 24 public: | 24 public: |
| 25 static void Create(mojom::TestServiceRequest request) { | 25 static void Create(mojom::TestServiceRequest request) { |
| 26 mojo::MakeStrongBinding(base::WrapUnique(new TestServiceImpl), | 26 mojo::MakeStrongBinding(base::WrapUnique(new TestServiceImpl), |
| 27 std::move(request)); | 27 std::move(request)); |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 info.factory = base::Bind(&CreateTestService); | 81 info.factory = base::Bind(&CreateTestService); |
| 82 services->insert(std::make_pair(kTestServiceUrl, info)); | 82 services->insert(std::make_pair(kTestServiceUrl, info)); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void ShellContentUtilityClient::ExposeInterfacesToBrowser( | 85 void ShellContentUtilityClient::ExposeInterfacesToBrowser( |
| 86 shell::InterfaceRegistry* registry) { | 86 shell::InterfaceRegistry* registry) { |
| 87 registry->AddInterface(base::Bind(&TestServiceImpl::Create)); | 87 registry->AddInterface(base::Bind(&TestServiceImpl::Create)); |
| 88 } | 88 } |
| 89 | 89 |
| 90 } // namespace content | 90 } // namespace content |
| OLD | NEW |