[email protected] | a1f9db4 | 2011-09-23 17:17:16 | [diff] [blame] | 1 | // 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 Charette | 1452023 | 2018-04-30 23:27:22 | [diff] [blame] | 7 | #include "base/sequenced_task_runner.h" |
[email protected] | a1f9db4 | 2011-09-23 17:17:16 | [diff] [blame] | 8 | |
| 9 | // No background jobs for aura for now. |
| 10 | |
| 11 | void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { |
| 12 | NOTIMPLEMENTED(); |
| 13 | } |
| 14 | |
mvanouwerkerk | 5abba42 | 2015-09-01 15:35:14 | [diff] [blame] | 15 | void BackgroundModeManager::DisplayClientInstalledNotification( |
| 16 | const base::string16& name) { |
[email protected] | a1f9db4 | 2011-09-23 17:17:16 | [diff] [blame] | 17 | NOTIMPLEMENTED(); |
| 18 | } |
| 19 | |
stanisc | af60565 | 2017-06-07 19:27:12 | [diff] [blame] | 20 | // static |
| 21 | scoped_refptr<base::SequencedTaskRunner> |
| 22 | BackgroundModeManager::CreateTaskRunner() { |
| 23 | return nullptr; |
| 24 | } |