// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/background/background_mode_manager.h"
#include "base/task/sequenced_task_runner.h"
void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) {
NOTREACHED_IN_MIGRATION();
}
void BackgroundModeManager::DisplayClientInstalledNotification(
const std::u16string& name) {
// No need to display anything on ChromeOS because all extensions run all
// the time anyway.
}
// static
scoped_refptr<base::SequencedTaskRunner>
BackgroundModeManager::CreateTaskRunner() {
return nullptr;
}