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

Side by Side Diff: chrome/installer/util/master_preferences_constants.h

Issue 12316097: Added master_preferences to control shortcuts on windows. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: split into 2 prefs Created 7 years, 9 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
OLDNEW
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 // This file contains the constants used to process master_preferences files 5 // This file contains the constants used to process master_preferences files
6 // used by setup and first run. 6 // used by setup and first run.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ 8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ 9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // Integer. RLZ ping delay in seconds. 56 // Integer. RLZ ping delay in seconds.
57 extern const char kDistroPingDelay[]; 57 extern const char kDistroPingDelay[];
58 // Boolean. Do not show first run bubble, even if it would otherwise be shown. 58 // Boolean. Do not show first run bubble, even if it would otherwise be shown.
59 extern const char kDistroSuppressFirstRunBubble[]; 59 extern const char kDistroSuppressFirstRunBubble[];
60 // Boolean. Prevent creation of the Desktop shortcut on install (and later on 60 // Boolean. Prevent creation of the Desktop shortcut on install (and later on
61 // Active Setup for each user on a system-level install). 61 // Active Setup for each user on a system-level install).
62 extern const char kDoNotCreateDesktopShortcut[]; 62 extern const char kDoNotCreateDesktopShortcut[];
63 // Boolean. Prevent creation of the Quick Launch shortcut on install (and later 63 // Boolean. Prevent creation of the Quick Launch shortcut on install (and later
64 // on Active Setup for each user on a system-level install). 64 // on Active Setup for each user on a system-level install).
65 extern const char kDoNotCreateQuickLaunchShortcut[]; 65 extern const char kDoNotCreateQuickLaunchShortcut[];
66 // Boolean. Prevent creation of the Taskbar (since Windows 7) shortcut on
67 // install (and later on Active Setup for each user on a system-level install).
68 extern const char kDoNotCreateTaskbarShortcut[];
69 // Boolean. Prevents the creation of all shortcuts to chrome, including the
gab 2013/03/06 20:20:32 s/Prevents/Prevent (for consistency with surroundi
Joao da Silva 2013/03/06 21:21:33 Done.
70 // desktop, quick launch, taskbar and the start menu.
gab 2013/03/06 20:20:32 desktop, quick launch, taskbar and the start menu.
Joao da Silva 2013/03/06 21:21:33 Done.
71 extern const char kDoNotCreateAnyShortcuts[];
gab 2013/03/06 20:20:32 Please keep the alphabetical order here (i.e. kDoN
Joao da Silva 2013/03/06 21:21:33 Done.
66 // Boolean. Do not launch Chrome after first install. Cmd line override present. 72 // Boolean. Do not launch Chrome after first install. Cmd line override present.
67 extern const char kDoNotLaunchChrome[]; 73 extern const char kDoNotLaunchChrome[];
68 // Boolean. Do not register with Google Update to have Chrome launched after 74 // Boolean. Do not register with Google Update to have Chrome launched after
69 // install. Cmd line override present. 75 // install. Cmd line override present.
70 extern const char kDoNotRegisterForUpdateLaunch[]; 76 extern const char kDoNotRegisterForUpdateLaunch[];
71 // String. Specifies the file path to write logging info to. 77 // String. Specifies the file path to write logging info to.
72 extern const char kLogFile[]; 78 extern const char kLogFile[];
73 // Boolean. Register Chrome as default browser. Cmd line override present. 79 // Boolean. Register Chrome as default browser. Cmd line override present.
74 extern const char kMakeChromeDefault[]; 80 extern const char kMakeChromeDefault[];
75 // Boolean. Register Chrome as default browser for the current user. 81 // Boolean. Register Chrome as default browser for the current user.
(...skipping 12 matching lines...) Expand all
88 // Boolean. Install Chrome to system wise location. Cmd line override present. 94 // Boolean. Install Chrome to system wise location. Cmd line override present.
89 extern const char kSystemLevel[]; 95 extern const char kSystemLevel[];
90 // Boolean. Run installer in verbose mode. Cmd line override present. 96 // Boolean. Run installer in verbose mode. Cmd line override present.
91 extern const char kVerboseLogging[]; 97 extern const char kVerboseLogging[];
92 // Name of the block that contains the extensions on the master preferences. 98 // Name of the block that contains the extensions on the master preferences.
93 extern const char kExtensionsBlock[]; 99 extern const char kExtensionsBlock[];
94 } // namespace master_preferences 100 } // namespace master_preferences
95 } // namespace installer 101 } // namespace installer
96 102
97 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ 103 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698