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

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

Issue 1543853002: Remove support for chrome_shortcut_icon_index master_pref. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittest Created 4 years, 11 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
11 namespace installer { 11 namespace installer {
12 namespace master_preferences { 12 namespace master_preferences {
13 // All the preferences below are expected to be inside the JSON "distribution" 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 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 15 // is specified in master preference as well as command line, the command line
16 // value takes precedence. 16 // value takes precedence.
17 17
18 // Boolean. This is to be a Chrome install. (When using MultiInstall) 18 // Boolean. This is to be a Chrome install. (When using MultiInstall)
19 extern const char kChrome[]; 19 extern const char kChrome[];
20 // Integer. Icon index from chrome.exe to use for shortcuts.
21 extern const char kChromeShortcutIconIndex[];
22 // Boolean. This is a legacy preference and should no longer be used; it is 20 // Boolean. This is a legacy preference and should no longer be used; it is
23 // kept around so that old master_preferences which specify 21 // kept around so that old master_preferences which specify
24 // "create_all_shortcuts":false still enforce the new 22 // "create_all_shortcuts":false still enforce the new
25 // "do_not_create_(desktop|quick_launch)_shortcut" preferences. Setting this to 23 // "do_not_create_(desktop|quick_launch)_shortcut" preferences. Setting this to
26 // true no longer has any impact. 24 // true no longer has any impact.
27 extern const char kCreateAllShortcuts[]; 25 extern const char kCreateAllShortcuts[];
28 // Boolean pref that disables all logging. 26 // Boolean pref that disables all logging.
29 extern const char kDisableLogging[]; 27 extern const char kDisableLogging[];
30 // Name of the dictionary that holds the distribution values. 28 // Name of the dictionary that holds the distribution values.
31 extern const char kDistroDict[]; 29 extern const char kDistroDict[];
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 // Boolean. Install Chrome to system wise location. Cmd line override present. 89 // Boolean. Install Chrome to system wise location. Cmd line override present.
92 extern const char kSystemLevel[]; 90 extern const char kSystemLevel[];
93 // Boolean. Run installer in verbose mode. Cmd line override present. 91 // Boolean. Run installer in verbose mode. Cmd line override present.
94 extern const char kVerboseLogging[]; 92 extern const char kVerboseLogging[];
95 // Name of the block that contains the extensions on the master preferences. 93 // Name of the block that contains the extensions on the master preferences.
96 extern const char kExtensionsBlock[]; 94 extern const char kExtensionsBlock[];
97 } // namespace master_preferences 95 } // namespace master_preferences
98 } // namespace installer 96 } // namespace installer
99 97
100 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ 98 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/master_preferences.h ('k') | chrome/installer/util/master_preferences_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698