OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/background_mode_manager.h" | 5 #include "chrome/browser/background_mode_manager.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "grit/generated_resources.h" | 8 #include "grit/generated_resources.h" |
The wrong rickcam account
2010/12/09 17:34:27
I recommend dropping this change in favor of the #
| |
9 | 9 |
10 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { | |
11 NOTREACHED(); | |
12 } | |
13 | |
14 string16 BackgroundModeManager::GetPreferencesMenuLabel() { | 10 string16 BackgroundModeManager::GetPreferencesMenuLabel() { |
15 return l10n_util::GetStringUTF16(IDS_SETTINGS); | 11 return l10n_util::GetStringUTF16(IDS_SETTINGS); |
16 } | 12 } |
OLD | NEW |