OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2010 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 "app/menus/simple_menu_model.h" | |
6 #include "chrome/browser/background_mode_manager.h" | |
7 #include "grit/generated_resources.h" | |
8 | |
9 void BackgroundModeManager::DisableLaunchOnStartupTask::Run() { | |
10 } | |
Andrew T Wilson (Slow)
2010/12/03 02:06:59
This code should never be called, so we should put
The wrong rickcam account
2010/12/04 02:08:04
Done. Eliminate this routine outright a la your p
| |
11 | |
12 void BackgroundModeManager::EnableLaunchOnStartupTask::Run() { | |
13 } | |
14 | |
15 void BackgroundModeManager::AddPreferencesItem(menus::SimpleMenuModel* menu) { | |
16 menu->AddItemWithStringId(IDC_OPTIONS, IDS_SETTINGS); | |
17 } | |
OLD | NEW |