blob: 755be6078184b39c4448d1eab9d8f969ebde271d [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// 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/sequenced_task_runner.h"
void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) {
NOTREACHED();
}
void BackgroundModeManager::DisplayClientInstalledNotification(
const base::string16& 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;
}