| Index: components/arc/arc_bridge_bootstrap.cc
|
| diff --git a/components/arc/arc_bridge_bootstrap.cc b/components/arc/arc_bridge_bootstrap.cc
|
| index 5d856ef1d3f8455b4672d23709244759f9f53cd5..f20d8e374ba70e7e4dc43c105d7b19cd40185ff5 100644
|
| --- a/components/arc/arc_bridge_bootstrap.cc
|
| +++ b/components/arc/arc_bridge_bootstrap.cc
|
| @@ -128,7 +128,7 @@ ArcBridgeBootstrapImpl::ArcBridgeBootstrapImpl() : weak_factory_(this) {}
|
|
|
| ArcBridgeBootstrapImpl::~ArcBridgeBootstrapImpl() {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| - DCHECK(state_ == State::STOPPED);
|
| + DCHECK(state_ == State::STOPPED || state_ == State::STOPPING);
|
| }
|
|
|
| void ArcBridgeBootstrapImpl::Start() {
|
| @@ -329,14 +329,11 @@ void ArcBridgeBootstrapImpl::SetState(State state) {
|
| // DCHECK on enum classes not supported.
|
| DCHECK(state_ != state);
|
| state_ = state;
|
| + VLOG(2) << "State: " << static_cast<uint32_t>(state_);
|
| }
|
|
|
| } // namespace
|
|
|
| -ArcBridgeBootstrap::ArcBridgeBootstrap() {}
|
| -
|
| -ArcBridgeBootstrap::~ArcBridgeBootstrap() {}
|
| -
|
| // static
|
| std::unique_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() {
|
| return base::WrapUnique(new ArcBridgeBootstrapImpl());
|
|
|