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 "mojo/public/cpp/bindings/lib/binding_state.h" | 5 #include "mojo/public/cpp/bindings/lib/binding_state.h" |
6 | 6 |
7 namespace mojo { | 7 namespace mojo { |
8 namespace internal { | 8 namespace internal { |
9 | 9 |
10 BindingStateBase::BindingStateBase() = default; | 10 BindingStateBase::BindingStateBase() = default; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 | 45 |
46 void BindingStateBase::CloseWithReason(uint32_t custom_reason, | 46 void BindingStateBase::CloseWithReason(uint32_t custom_reason, |
47 const std::string& description) { | 47 const std::string& description) { |
48 if (endpoint_client_) | 48 if (endpoint_client_) |
49 endpoint_client_->CloseWithReason(custom_reason, description); | 49 endpoint_client_->CloseWithReason(custom_reason, description); |
50 | 50 |
51 Close(); | 51 Close(); |
52 } | 52 } |
53 | 53 |
54 void BindingStateBase::EnableNestedDispatch(bool enabled) { | |
55 router_->EnableNestedDispatch(enabled); | |
56 } | |
57 | |
58 void BindingStateBase::FlushForTesting() { | 54 void BindingStateBase::FlushForTesting() { |
59 endpoint_client_->FlushForTesting(); | 55 endpoint_client_->FlushForTesting(); |
60 } | 56 } |
61 | 57 |
62 void BindingStateBase::EnableTestingMode() { | 58 void BindingStateBase::EnableTestingMode() { |
63 DCHECK(is_bound()); | 59 DCHECK(is_bound()); |
64 router_->EnableTestingMode(); | 60 router_->EnableTestingMode(); |
65 } | 61 } |
66 | 62 |
67 void BindingStateBase::BindInternal( | 63 void BindingStateBase::BindInternal( |
(...skipping 17 matching lines...) Expand all Loading... |
85 router_->SetMasterInterfaceName(interface_name); | 81 router_->SetMasterInterfaceName(interface_name); |
86 | 82 |
87 endpoint_client_.reset(new InterfaceEndpointClient( | 83 endpoint_client_.reset(new InterfaceEndpointClient( |
88 router_->CreateLocalEndpointHandle(kMasterInterfaceId), stub, | 84 router_->CreateLocalEndpointHandle(kMasterInterfaceId), stub, |
89 std::move(request_validator), has_sync_methods, std::move(runner), | 85 std::move(request_validator), has_sync_methods, std::move(runner), |
90 interface_version)); | 86 interface_version)); |
91 } | 87 } |
92 | 88 |
93 } // namesapce internal | 89 } // namesapce internal |
94 } // namespace mojo | 90 } // namespace mojo |
OLD | NEW |