master_preferences_constants.h revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
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
3// found in the LICENSE file.
4//
5// This file contains the constants used to process master_preferences files
6// used by setup and first run.
7
8#ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
9#define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
10
11namespace installer {
12namespace master_preferences {
13// All the preferences below are expected to be inside the JSON "distribution"
14// block. Some of them also have equivalent command line option. If same option
15// is specified in master preference as well as command line, the command line
16// value takes precedence.
17
18// Boolean. Use alternate text for the shortcut. Cmd line override present.
19extern const char kAltShortcutText[];
20// Boolean. Whether to instruct the installer to auto-launch chrome on computer
21// startup. The default (if not provided) is |false|.
22extern const char kAutoLaunchChrome[];
23// Boolean. This is to be a Chrome install. (When using MultiInstall)
24extern const char kChrome[];
25// Boolean. This is to be a Chrome App Host install.
26extern const char kChromeAppHostDeprecated[];  // TODO(huangs): Remove by M27.
27// Boolean. This is to be a Chrome App Launcher install.
28extern const char kChromeAppLauncher[];
29// Integer. Icon index from chrome.exe to use for shortcuts.
30extern const char kChromeShortcutIconIndex[];
31// Boolean. This is a legacy preference and should no longer be used; it is
32// kept around so that old master_preferences which specify
33// "create_all_shortcuts":false still enforce the new
34// "do_not_create_(desktop|quick_launch)_shortcut" preferences. Setting this to
35// true no longer has any impact.
36extern const char kCreateAllShortcuts[];
37// Boolean pref that disables all logging.
38extern const char kDisableLogging[];
39// Name of the dictionary that holds the distribution values.
40extern const char kDistroDict[];
41// Boolean pref that triggers silent import of the default browser bookmarks.
42extern const char kDistroImportBookmarksPref[];
43// String pref that triggers silent import of bookmarks from the html file at
44// given path.
45extern const char kDistroImportBookmarksFromFilePref[];
46// Boolean pref that triggers silent import of the default browser history.
47extern const char kDistroImportHistoryPref[];
48// Boolean pref that triggers silent import of the default browser homepage.
49extern const char kDistroImportHomePagePref[];
50// Boolean pref that triggers silent import of the default search engine.
51extern const char kDistroImportSearchPref[];
52// Integer. RLZ ping delay in seconds.
53extern const char kDistroPingDelay[];
54// String of Chrome version for which the "set as default browser" infobar will
55// never be shown.
56extern const char kDistroSuppressDefaultBrowserPromptPref[];
57// Boolean. Do not show first run bubble, even if it would otherwise be shown.
58extern const char kDistroSuppressFirstRunBubble[];
59// Boolean. Prevent creation of all shortcuts to chrome, including the
60// desktop, quick launch, taskbar and the start menu shortcuts.
61extern const char kDoNotCreateAnyShortcuts[];
62// Boolean. Prevent creation of the Desktop shortcut on install (and later on
63// Active Setup for each user on a system-level install).
64extern const char kDoNotCreateDesktopShortcut[];
65// Boolean. Prevent creation of the Quick Launch shortcut on install (and later
66// on Active Setup for each user on a system-level install).
67extern const char kDoNotCreateQuickLaunchShortcut[];
68// Boolean. Prevent creation of the Taskbar (since Windows 7) shortcut on
69// install (and later on Active Setup for each user on a system-level install).
70extern const char kDoNotCreateTaskbarShortcut[];
71// Boolean. Do not launch Chrome after first install. Cmd line override present.
72extern const char kDoNotLaunchChrome[];
73// Boolean. Do not register with Google Update to have Chrome launched after
74// install. Cmd line override present.
75extern const char kDoNotRegisterForUpdateLaunch[];
76// String.  Specifies the file path to write logging info to.
77extern const char kLogFile[];
78// Boolean. Register Chrome as default browser. Cmd line override present.
79extern const char kMakeChromeDefault[];
80// Boolean. Register Chrome as default browser for the current user.
81extern const char kMakeChromeDefaultForUser[];
82// Boolean. Expect to be run by an MSI installer. Cmd line override present.
83extern const char kMsi[];
84// Boolean. Support installing multiple products at once.
85extern const char kMultiInstall[];
86// Boolean. Show EULA dialog before install.
87extern const char kRequireEula[];
88// Boolean. Indicates that the first-run 'set-as-default' dialog should not be
89// shown. Relevant in Windows 8+ context only. If this is true, the standard
90// 'set default browser' prompt on the butter-bar will appear during the first
91// run.
92extern const char kSuppressFirstRunDefaultBrowserPrompt[];
93// Boolean. Install Chrome to system wise location. Cmd line override present.
94extern const char kSystemLevel[];
95// Boolean. Run installer in verbose mode. Cmd line override present.
96extern const char kVerboseLogging[];
97// Name of the block that contains the extensions on the master preferences.
98extern const char kExtensionsBlock[];
99}  // namespace master_preferences
100}  // namespace installer
101
102#endif  // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
103