| 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 "components/arc/test/fake_arc_bridge_bootstrap.h" | 5 #include "components/arc/test/fake_arc_bridge_bootstrap.h" |
| 6 | 6 |
| 7 #include <utility> | |
| 8 | |
| 9 #include "base/logging.h" | 7 #include "base/logging.h" |
| 10 #include "components/arc/common/arc_bridge.mojom.h" | |
| 11 #include "components/arc/test/fake_arc_bridge_instance.h" | |
| 12 #include "mojo/public/cpp/bindings/interface_request.h" | |
| 13 | 8 |
| 14 namespace arc { | 9 namespace arc { |
| 15 | 10 |
| 16 FakeArcBridgeBootstrap::FakeArcBridgeBootstrap(FakeArcBridgeInstance* instance) | 11 FakeArcBridgeBootstrap::FakeArcBridgeBootstrap() = default; |
| 17 : instance_(instance) { | 12 |
| 18 instance_->set_delegate(this); | 13 FakeArcBridgeBootstrap::~FakeArcBridgeBootstrap() = default; |
| 19 } | |
| 20 | 14 |
| 21 void FakeArcBridgeBootstrap::Start() { | 15 void FakeArcBridgeBootstrap::Start() { |
| 22 DCHECK(delegate_); | 16 DCHECK(delegate_); |
| 23 mojom::ArcBridgeInstancePtr instance; | 17 if (boot_failure_emulation_enabled_) { |
| 24 instance_->Bind(mojo::GetProxy(&instance)); | 18 delegate_->OnStopped(boot_failure_reason_); |
| 25 delegate_->OnConnectionEstablished(std::move(instance)); | 19 } else if (!boot_suspended_) { |
| 20 delegate_->OnReady(); |
| 21 } |
| 26 } | 22 } |
| 27 | 23 |
| 28 void FakeArcBridgeBootstrap::Stop() { | 24 void FakeArcBridgeBootstrap::Stop() { |
| 29 DCHECK(delegate_); | 25 StopWithReason(ArcBridgeService::StopReason::SHUTDOWN); |
| 30 instance_->Unbind(); | |
| 31 delegate_->OnStopped(ArcBridgeService::StopReason::SHUTDOWN); | |
| 32 } | 26 } |
| 33 | 27 |
| 34 void FakeArcBridgeBootstrap::OnStopped(ArcBridgeService::StopReason reason) { | 28 void FakeArcBridgeBootstrap::StopWithReason( |
| 29 ArcBridgeService::StopReason reason) { |
| 35 DCHECK(delegate_); | 30 DCHECK(delegate_); |
| 36 instance_->Unbind(); | |
| 37 delegate_->OnStopped(reason); | 31 delegate_->OnStopped(reason); |
| 38 } | 32 } |
| 39 | 33 |
| 34 void FakeArcBridgeBootstrap::EnableBootFailureEmulation( |
| 35 ArcBridgeService::StopReason reason) { |
| 36 DCHECK(!boot_failure_emulation_enabled_); |
| 37 DCHECK(!boot_suspended_); |
| 38 |
| 39 boot_failure_emulation_enabled_ = true; |
| 40 boot_failure_reason_ = reason; |
| 41 } |
| 42 |
| 43 void FakeArcBridgeBootstrap::SuspendBoot() { |
| 44 DCHECK(!boot_failure_emulation_enabled_); |
| 45 DCHECK(!boot_suspended_); |
| 46 |
| 47 boot_suspended_ = true; |
| 48 } |
| 49 |
| 40 } // namespace arc | 50 } // namespace arc |
| OLD | NEW |