| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <unistd.h> | 5 #include <unistd.h> |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/environment.h" | 9 #include "base/environment.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 base::Bind(DisableLaunchOnStartupCallback)); | 70 base::Bind(DisableLaunchOnStartupCallback)); |
| 71 } | 71 } |
| 72 } | 72 } |
| 73 | 73 |
| 74 void BackgroundModeManager::DisplayAppInstalledNotification( | 74 void BackgroundModeManager::DisplayAppInstalledNotification( |
| 75 const Extension* extension) { | 75 const Extension* extension) { |
| 76 // TODO(atwilson): Display a platform-appropriate notification here. | 76 // TODO(atwilson): Display a platform-appropriate notification here. |
| 77 // http://crbug.com/74970 | 77 // http://crbug.com/74970 |
| 78 } | 78 } |
| 79 | 79 |
| 80 string16 BackgroundModeManager::GetPreferencesMenuLabel() { | 80 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() { |
| 81 string16 result = gtk_util::GetStockPreferencesMenuLabel(); | 81 base::string16 result = gtk_util::GetStockPreferencesMenuLabel(); |
| 82 if (!result.empty()) | 82 if (!result.empty()) |
| 83 return result; | 83 return result; |
| 84 return l10n_util::GetStringUTF16(IDS_PREFERENCES); | 84 return l10n_util::GetStringUTF16(IDS_PREFERENCES); |
| 85 } | 85 } |
| OLD | NEW |