1 // Copyright 2013 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 "chrome/browser/ui/app_list/keep_alive_service_impl.h"
7 #include "chrome/browser/lifetime/application_lifetime.h"
9 ScopedKeepAlive::ScopedKeepAlive() {
10 chrome::StartKeepAlive();
13 ScopedKeepAlive::~ScopedKeepAlive() {
14 chrome::EndKeepAlive();
17 KeepAliveServiceImpl::KeepAliveServiceImpl() {
20 KeepAliveServiceImpl::~KeepAliveServiceImpl() {
23 void KeepAliveServiceImpl::EnsureKeepAlive() {
25 keep_alive_
.reset(new ScopedKeepAlive());
28 void KeepAliveServiceImpl::FreeKeepAlive() {