summaryrefslogtreecommitdiffstats
path: root/chrome/browser/background_mode_manager_chromeos.cc
blob: 86138b0187009d10d9613037a7e8e2e8e8e3e6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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_mode_manager.h"

#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"

void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) {
  NOTREACHED();
}

void BackgroundModeManager::DisplayAppInstalledNotification(
    const Extension* extension) {
  // No need to display anything on ChromeOS because all extensions run all
  // the time anyway.
}

string16 BackgroundModeManager::GetPreferencesMenuLabel() {
  return l10n_util::GetStringUTF16(IDS_SETTINGS);
}