| 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 | 20 |
| 21 using content::BrowserThread; | 21 using content::BrowserThread; |
| 22 | 22 |
| 23 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { | 23 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { |
| 24 // This functionality is only defined for default profile, currently. | 24 // This functionality is only defined for default profile, currently. |
| 25 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir)) | 25 if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir)) |
| 26 return; | 26 return; |
| 27 BrowserThread::PostTask( | 27 BrowserThread::PostTask( |
| 28 BrowserThread::FILE, FROM_HERE, | 28 BrowserThread::FILE, FROM_HERE, |
| 29 should_launch ? | 29 should_launch ? |
| 30 base::Bind(auto_launch_util::EnableBackgroundStartAtLogin) : | 30 base::Bind(auto_launch_util::EnableBackgroundStartAtLogin) : |
| 31 base::Bind(auto_launch_util::DisableBackgroundStartAtLogin)); | 31 base::Bind(auto_launch_util::DisableBackgroundStartAtLogin)); |
| 32 } | 32 } |
| 33 | 33 |
| 34 void BackgroundModeManager::DisplayAppInstalledNotification( | 34 void BackgroundModeManager::DisplayAppInstalledNotification( |
| 35 const extensions::Extension* extension) { | 35 const extensions::Extension* extension) { |
| 36 // Create a status tray notification balloon explaining to the user that | 36 // Create a status tray notification balloon explaining to the user that |
| 37 // a background app has been installed. | 37 // a background app has been installed. |
| 38 CreateStatusTrayIcon(); | 38 CreateStatusTrayIcon(); |
| 39 status_icon_->DisplayBalloon( | 39 status_icon_->DisplayBalloon( |
| 40 gfx::ImageSkia(), | 40 gfx::ImageSkia(), |
| 41 l10n_util::GetStringUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_TITLE), | 41 l10n_util::GetStringUTF16(IDS_BACKGROUND_APP_INSTALLED_BALLOON_TITLE), |
| 42 l10n_util::GetStringFUTF16( | 42 l10n_util::GetStringFUTF16( |
| 43 IDS_BACKGROUND_APP_INSTALLED_BALLOON_BODY, | 43 IDS_BACKGROUND_APP_INSTALLED_BALLOON_BODY, |
| 44 base::UTF8ToUTF16(extension->name()), | 44 base::UTF8ToUTF16(extension->name()), |
| 45 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME))); | 45 l10n_util::GetStringUTF16(IDS_PRODUCT_NAME))); |
| 46 } | 46 } |
| 47 | 47 |
| 48 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() { | 48 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() { |
| 49 return l10n_util::GetStringUTF16(IDS_OPTIONS); | 49 return l10n_util::GetStringUTF16(IDS_OPTIONS); |
| 50 } | 50 } |
| OLD | NEW |