forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstoppable.cc
41 lines (31 loc) · 970 Bytes
/
stoppable.cc
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
39
40
41
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/base/stoppable.h"
#include "base/message_loop.h"
#include "base/single_thread_task_runner.h"
namespace remoting {
Stoppable::Stoppable(
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
const base::Closure& stopped_callback)
: state_(kRunning),
stopped_callback_(stopped_callback),
task_runner_(task_runner) {
}
Stoppable::~Stoppable() {
DCHECK_EQ(state_, kStopped);
}
void Stoppable::Stop() {
DCHECK(task_runner_->BelongsToCurrentThread());
if (state_ == kRunning) {
state_ = kStopping;
DoStop();
}
}
void Stoppable::CompleteStopping() {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kStopping);
state_ = kStopped;
task_runner_->PostTask(FROM_HERE, stopped_callback_);
}
} // namespace remoting