blob: d5b67cd0aca8c6f096b7b3c3267466a3ba0efc10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/fuchsia/test_component_controller.h"
#include "base/fuchsia/fuchsia_logging.h"
#include "base/run_loop.h"
namespace base {
TestComponentController::TestComponentController() = default;
TestComponentController::TestComponentController(TestComponentController&&) =
default;
TestComponentController& TestComponentController::operator=(
TestComponentController&&) = default;
TestComponentController::~TestComponentController() {
KillAndRunUntilDisconnect();
}
void TestComponentController::KillAndRunUntilDisconnect() {
if (!ptr_)
return;
base::RunLoop loop;
ptr_.set_error_handler([&loop](zx_status_t status) {
loop.Quit();
ZX_CHECK(status == ZX_ERR_PEER_CLOSED, status);
});
ptr_->Kill();
loop.Run();
CHECK(!ptr_);
}
} // namespace base
|