Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: chrome/browser/background/background_mode_manager_gtk.cc

Issue 10097004: Moved Linux specific shell integration declarations into own header. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/shell_integration.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/file_path.h" 10 #include "base/file_path.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/nix/xdg_util.h" 13 #include "base/nix/xdg_util.h"
14 #include "chrome/browser/background/background_mode_manager.h" 14 #include "chrome/browser/background/background_mode_manager.h"
15 #include "chrome/browser/shell_integration.h" 15 #include "chrome/browser/shell_integration_linux.h"
16 #include "chrome/browser/ui/gtk/gtk_util.h" 16 #include "chrome/browser/ui/gtk/gtk_util.h"
17 #include "chrome/common/auto_start_linux.h" 17 #include "chrome/common/auto_start_linux.h"
18 #include "chrome/common/chrome_switches.h" 18 #include "chrome/common/chrome_switches.h"
19 #include "chrome/common/chrome_version_info.h" 19 #include "chrome/common/chrome_version_info.h"
20 #include "content/public/browser/browser_thread.h" 20 #include "content/public/browser/browser_thread.h"
21 #include "grit/generated_resources.h" 21 #include "grit/generated_resources.h"
22 #include "ui/base/l10n/l10n_util.h" 22 #include "ui/base/l10n/l10n_util.h"
23 23
24 using content::BrowserThread; 24 using content::BrowserThread;
25 25
26 namespace { 26 namespace {
27 27
28 // TODO(rickcam): Bug 56280: Share implementation with ShellIntegration 28 // TODO(rickcam): Bug 56280: Share implementation with ShellIntegration
29 void EnableLaunchOnStartupCallback() { 29 void EnableLaunchOnStartupCallback() {
30 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); 30 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
31 scoped_ptr<base::Environment> environment(base::Environment::Create()); 31 scoped_ptr<base::Environment> environment(base::Environment::Create());
32 scoped_ptr<chrome::VersionInfo> version_info(new chrome::VersionInfo()); 32 scoped_ptr<chrome::VersionInfo> version_info(new chrome::VersionInfo());
33 33
34 std::string wrapper_script; 34 std::string wrapper_script;
35 if (!environment->GetVar("CHROME_WRAPPER", &wrapper_script)) { 35 if (!environment->GetVar("CHROME_WRAPPER", &wrapper_script)) {
36 LOG(WARNING) 36 LOG(WARNING)
37 << "Failed to register launch on login. CHROME_WRAPPER not set."; 37 << "Failed to register launch on login. CHROME_WRAPPER not set.";
38 return; 38 return;
39 } 39 }
40 std::string command_line = wrapper_script + 40 std::string command_line = wrapper_script +
41 " --" + switches::kNoStartupWindow; 41 " --" + switches::kNoStartupWindow;
42 if (!AutoStart::AddApplication( 42 if (!AutoStart::AddApplication(
43 ShellIntegration::GetDesktopName(environment.get()), 43 ShellIntegrationLinux::GetDesktopName(environment.get()),
44 version_info->Name(), 44 version_info->Name(),
45 command_line, 45 command_line,
46 false)) { 46 false)) {
47 NOTREACHED() << "Failed to register launch on login."; 47 NOTREACHED() << "Failed to register launch on login.";
48 } 48 }
49 } 49 }
50 50
51 void DisableLaunchOnStartupCallback() { 51 void DisableLaunchOnStartupCallback() {
52 scoped_ptr<base::Environment> environment(base::Environment::Create()); 52 scoped_ptr<base::Environment> environment(base::Environment::Create());
53 if (!AutoStart::Remove(ShellIntegration::GetDesktopName(environment.get()))) { 53 if (!AutoStart::Remove(
54 ShellIntegrationLinux::GetDesktopName(environment.get()))) {
54 NOTREACHED() << "Failed to deregister launch on login."; 55 NOTREACHED() << "Failed to deregister launch on login.";
55 } 56 }
56 } 57 }
57 58
58 } // namespace 59 } // namespace
59 60
60 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) { 61 void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) {
61 // This functionality is only defined for default profile, currently. 62 // This functionality is only defined for default profile, currently.
62 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir)) 63 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir))
63 return; 64 return;
(...skipping 11 matching lines...) Expand all
75 // TODO(atwilson): Display a platform-appropriate notification here. 76 // TODO(atwilson): Display a platform-appropriate notification here.
76 // http://crbug.com/74970 77 // http://crbug.com/74970
77 } 78 }
78 79
79 string16 BackgroundModeManager::GetPreferencesMenuLabel() { 80 string16 BackgroundModeManager::GetPreferencesMenuLabel() {
80 string16 result = gtk_util::GetStockPreferencesMenuLabel(); 81 string16 result = gtk_util::GetStockPreferencesMenuLabel();
81 if (!result.empty()) 82 if (!result.empty())
82 return result; 83 return result;
83 return l10n_util::GetStringUTF16(IDS_PREFERENCES); 84 return l10n_util::GetStringUTF16(IDS_PREFERENCES);
84 } 85 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/shell_integration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698