| 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/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "base/win/registry.h" | 11 #include "base/win/registry.h" |
| 12 #include "chrome/browser/background/background_mode_manager.h" | 12 #include "chrome/browser/background/background_mode_manager.h" |
| 13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "chrome/grit/chromium_strings.h" | 14 #include "chrome/grit/chromium_strings.h" |
| 15 #include "chrome/grit/generated_resources.h" | 15 #include "chrome/grit/generated_resources.h" |
| 16 #include "chrome/installer/util/auto_launch_util.h" | 16 #include "chrome/installer/util/auto_launch_util.h" |
| 17 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 19 #include "ui/gfx/image/image_skia.h" | 19 #include "ui/gfx/image/image_skia.h" |
| 20 #include "ui/message_center/notifier_settings.h" |
| 20 | 21 |
| 21 using content::BrowserThread; | 22 using content::BrowserThread; |
| 22 | 23 |
| 24 const char kAppInstalledNotifierId[] = "background-mode.app-installed"; |
| 25 |
| 23 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { | 26 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { |
| 24 // This functionality is only defined for default profile, currently. | 27 // This functionality is only defined for default profile, currently. |
| 25 if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir)) | 28 if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir)) |
| 26 return; | 29 return; |
| 27 BrowserThread::PostTask( | 30 BrowserThread::PostTask( |
| 28 BrowserThread::FILE, FROM_HERE, | 31 BrowserThread::FILE, FROM_HERE, |
| 29 should_launch ? | 32 should_launch ? |
| 30 base::Bind(auto_launch_util::EnableBackgroundStartAtLogin) : | 33 base::Bind(auto_launch_util::EnableBackgroundStartAtLogin) : |
| 31 base::Bind(auto_launch_util::DisableBackgroundStartAtLogin)); | 34 base::Bind(auto_launch_util::DisableBackgroundStartAtLogin)); |
| 32 } | 35 } |
| 33 | 36 |
| 34 void BackgroundModeManager::DisplayClientInstalledNotification( | 37 void BackgroundModeManager::DisplayClientInstalledNotification( |
| 35 const base::string16& name) { | 38 const base::string16& name) { |
| 36 // Create a status tray notification balloon explaining to the user what has | 39 // Create a status tray notification balloon explaining to the user what has |
| 37 // been installed. | 40 // been installed. |
| 38 CreateStatusTrayIcon(); | 41 CreateStatusTrayIcon(); |
| 39 status_icon_->DisplayBalloon( | 42 status_icon_->DisplayBalloon( |
| 40 gfx::ImageSkia(), | 43 gfx::ImageSkia(), |
| 41 l10n_util::GetStringUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_TITLE), | 44 l10n_util::GetStringUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_TITLE), |
| 42 l10n_util::GetStringFUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_BODY, | 45 l10n_util::GetStringFUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_BODY, |
| 43 name, | 46 name, |
| 44 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME))); | 47 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)), |
| 48 message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT, |
| 49 kAppInstalledNotifierId)); |
| 45 } | 50 } |
| 46 | 51 |
| 47 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() { | 52 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() { |
| 48 return l10n_util::GetStringUTF16(IDS_OPTIONS); | 53 return l10n_util::GetStringUTF16(IDS_OPTIONS); |
| 49 } | 54 } |
| OLD | NEW |