| 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 "base/base_paths.h" | 5 #include "base/base_paths.h" |
| 6 #include "base/bind.h" | 6 #include "base/bind.h" |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 CreateStatusTrayIcon(); | 39 CreateStatusTrayIcon(); |
| 40 status_icon_->DisplayBalloon( | 40 status_icon_->DisplayBalloon( |
| 41 gfx::ImageSkia(), | 41 gfx::ImageSkia(), |
| 42 l10n_util::GetStringUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_TITLE), | 42 l10n_util::GetStringUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_TITLE), |
| 43 l10n_util::GetStringFUTF16( | 43 l10n_util::GetStringFUTF16( |
| 44 IDS_BACKGROUND_APP_INSTALLED_BALLOON_BODY, | 44 IDS_BACKGROUND_APP_INSTALLED_BALLOON_BODY, |
| 45 UTF8ToUTF16(extension->name()), | 45 UTF8ToUTF16(extension->name()), |
| 46 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME))); | 46 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME))); |
| 47 } | 47 } |
| 48 | 48 |
| 49 string16 BackgroundModeManager::GetPreferencesMenuLabel() { | 49 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() { |
| 50 return l10n_util::GetStringUTF16(IDS_OPTIONS); | 50 return l10n_util::GetStringUTF16(IDS_OPTIONS); |
| 51 } | 51 } |
| OLD | NEW |