Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Side by Side Diff: remoting/base/stoppable.cc

Issue 10796099: Introducing remoting::Stoppable helper base class implementing asynchronous shutdown on a specific t (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing case of the include file name. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "remoting/base/stoppable.h"
6
7 #include "base/message_loop.h"
8 #include "base/single_thread_task_runner.h"
9
10 namespace remoting {
11
12 Stoppable::Stoppable(
13 scoped_refptr<base::SingleThreadTaskRunner> task_runner,
14 const base::Closure& stopped_callback)
15 : state_(kRunning),
16 stopped_callback_(stopped_callback),
17 task_runner_(task_runner) {
18 }
19
20 Stoppable::~Stoppable() {
21 DCHECK_EQ(state_, kStopped);
22 }
23
24 void Stoppable::Stop() {
25 DCHECK(task_runner_->BelongsToCurrentThread());
26
27 if (state_ == kRunning) {
28 state_ = kStopping;
29 DoStop();
30 }
31 }
32
33 void Stoppable::CompleteStopping() {
34 DCHECK(task_runner_->BelongsToCurrentThread());
35 DCHECK_EQ(state_, kStopping);
36
37 state_ = kStopped;
38 task_runner_->PostTask(FROM_HERE, stopped_callback_);
39 }
40
41 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698