1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "app/l10n_util.h"
#include "base/base_paths.h"
#include "base/command_line.h"
#include "base/file_path.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "base/task.h"
#include "base/win/registry.h"
#include "chrome/browser/background_mode_manager.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/common/chrome_switches.h"
#include "grit/generated_resources.h"
namespace {
class DisableLaunchOnStartupTask : public Task {
public:
virtual void Run();
};
class EnableLaunchOnStartupTask : public Task {
public:
virtual void Run();
};
const HKEY kBackgroundModeRegistryRootKey = HKEY_CURRENT_USER;
const wchar_t* kBackgroundModeRegistrySubkey =
L"Software\\Microsoft\\Windows\\CurrentVersion\\Run";
const wchar_t* kBackgroundModeRegistryKeyName = L"chromium";
void DisableLaunchOnStartupTask::Run() {
const wchar_t* key_name = kBackgroundModeRegistryKeyName;
base::win::RegKey read_key(kBackgroundModeRegistryRootKey,
kBackgroundModeRegistrySubkey, KEY_READ);
base::win::RegKey write_key(kBackgroundModeRegistryRootKey,
kBackgroundModeRegistrySubkey, KEY_WRITE);
if (read_key.ValueExists(key_name) && !write_key.DeleteValue(key_name))
NOTREACHED() << "Failed to deregister launch on login.";
}
void EnableLaunchOnStartupTask::Run() {
// TODO(rickcam): Bug 53597: Make RegKey mockable.
// TODO(rickcam): Bug 53600: Use distinct registry keys per flavor+profile.
const wchar_t* key_name = kBackgroundModeRegistryKeyName;
base::win::RegKey read_key(kBackgroundModeRegistryRootKey,
kBackgroundModeRegistrySubkey, KEY_READ);
base::win::RegKey write_key(kBackgroundModeRegistryRootKey,
kBackgroundModeRegistrySubkey, KEY_WRITE);
FilePath executable;
if (!PathService::Get(base::FILE_EXE, &executable))
return;
std::wstring new_value = executable.value() + L" --no-startup-window";
if (read_key.ValueExists(key_name)) {
std::wstring current_value;
if (read_key.ReadValue(key_name, ¤t_value) &&
(current_value == new_value)) {
return;
}
}
if (!write_key.WriteValue(key_name, new_value.c_str()))
NOTREACHED() << "Failed to register launch on login.";
}
} // namespace
void BackgroundModeManager::EnableLaunchOnStartup(bool should_launch) {
// This functionality is only defined for default profile, currently.
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kUserDataDir))
return;
if (should_launch) {
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
new EnableLaunchOnStartupTask());
} else {
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
new DisableLaunchOnStartupTask());
}
}
string16 BackgroundModeManager::GetPreferencesMenuLabel() {
return l10n_util::GetStringUTF16(IDS_OPTIONS);
}
|