Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / app_list / keep_alive_service_impl.cc
bloba08c843d3d0d772bcf31e5a1953a0b84e52ef486
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() {
24 if (!keep_alive_)
25 keep_alive_.reset(new ScopedKeepAlive());
28 void KeepAliveServiceImpl::FreeKeepAlive() {
29 if (keep_alive_)
30 keep_alive_.reset();