- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / app_list / test / fake_keep_alive_service.cc
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.
4
5 #include "chrome/browser/ui/app_list/test/fake_keep_alive_service.h"
6
7 FakeKeepAliveService::FakeKeepAliveService()
8   : is_keeping_alive_(false) {
9 }
10
11 void FakeKeepAliveService::EnsureKeepAlive() {
12   is_keeping_alive_ = true;
13 }
14
15 void FakeKeepAliveService::FreeKeepAlive() {
16   is_keeping_alive_ = false;
17 }