[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / mojo / shell / keep_alive.cc
blob387c6a790c3730a9fb1fe02e7546b3bac58d0200
1 // Copyright 2014 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.
5 #include "mojo/shell/keep_alive.h"
7 #include "base/bind.h"
8 #include "mojo/shell/context.h"
10 namespace mojo {
11 namespace shell {
13 KeepAlive::KeepAlive(Context* context) : context_(context) {
14 DCHECK(context_->task_runners()->ui_runner()->RunsTasksOnCurrentThread());
15 ++context_->keep_alive_counter()->count_;
18 KeepAlive::~KeepAlive() {
19 DCHECK(context_->task_runners()->ui_runner()->RunsTasksOnCurrentThread());
20 if (--context_->keep_alive_counter()->count_ == 0) {
21 base::MessageLoop::current()->PostTask(
22 FROM_HERE,
23 base::Bind(&KeepAlive::MaybeQuit, context_));
27 // static
28 void KeepAlive::MaybeQuit(Context* context) {
29 if (context->keep_alive_counter()->count_ == 0)
30 base::MessageLoop::current()->Quit();
33 } // namespace shell
34 } // namespace mojo