blob: 7a88d95dc624a9937c6973ac007fafbc55628253 [file] [log] [blame]
[email protected]a1f9db42011-09-23 17:17:161// Copyright (c) 2011 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/background/background_mode_manager.h"
6
Gabriel Charette14520232018-04-30 23:27:227#include "base/sequenced_task_runner.h"
[email protected]a1f9db42011-09-23 17:17:168
9// No background jobs for aura for now.
10
11void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) {
12 NOTIMPLEMENTED();
13}
14
mvanouwerkerk5abba422015-09-01 15:35:1415void BackgroundModeManager::DisplayClientInstalledNotification(
16 const base::string16& name) {
[email protected]a1f9db42011-09-23 17:17:1617 NOTIMPLEMENTED();
18}
19
staniscaf605652017-06-07 19:27:1220// static
21scoped_refptr<base::SequencedTaskRunner>
22BackgroundModeManager::CreateTaskRunner() {
23 return nullptr;
24}