OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "services/shell/public/cpp/interface_provider.h" |
| 6 |
| 7 namespace shell { |
| 8 |
| 9 InterfaceProvider::InterfaceProvider( |
| 10 mojom::InterfaceProviderPtr interface_provider) |
| 11 : interface_provider_(std::move(interface_provider)), |
| 12 weak_factory_(this) {} |
| 13 InterfaceProvider::~InterfaceProvider() {} |
| 14 |
| 15 void InterfaceProvider::SetConnectionLostClosure( |
| 16 const base::Closure& connection_lost_closure) { |
| 17 interface_provider_.set_connection_error_handler(connection_lost_closure); |
| 18 } |
| 19 |
| 20 base::WeakPtr<InterfaceProvider> InterfaceProvider::GetWeakPtr() { |
| 21 return weak_factory_.GetWeakPtr(); |
| 22 } |
| 23 |
| 24 void InterfaceProvider::GetInterface( |
| 25 const std::string& name, |
| 26 mojo::ScopedMessagePipeHandle request_handle) { |
| 27 // Local binders can be registered via TestApi. |
| 28 auto it = binders_.find(name); |
| 29 if (it != binders_.end()) { |
| 30 it->second.Run(std::move(request_handle)); |
| 31 return; |
| 32 } |
| 33 interface_provider_->GetInterface(name, std::move(request_handle)); |
| 34 } |
| 35 |
| 36 void InterfaceProvider::ClearBinders() { |
| 37 binders_.clear(); |
| 38 } |
| 39 |
| 40 } // namespace shell |
OLD | NEW |