OLD | NEW |
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 #pragma once | 10 #pragma once |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 // Boolean. Register Chrome as default browser. Cmd line override present. | 64 // Boolean. Register Chrome as default browser. Cmd line override present. |
65 extern const char kMakeChromeDefault[]; | 65 extern const char kMakeChromeDefault[]; |
66 // Boolean. Register Chrome as default browser for the current user. | 66 // Boolean. Register Chrome as default browser for the current user. |
67 extern const char kMakeChromeDefaultForUser[]; | 67 extern const char kMakeChromeDefaultForUser[]; |
68 // Boolean. Expect to be run by an MSI installer. Cmd line override present. | 68 // Boolean. Expect to be run by an MSI installer. Cmd line override present. |
69 extern const char kMsi[]; | 69 extern const char kMsi[]; |
70 // Boolean. Support installing multiple products at once. | 70 // Boolean. Support installing multiple products at once. |
71 extern const char kMultiInstall[]; | 71 extern const char kMultiInstall[]; |
72 // Boolean. Show EULA dialog before install. | 72 // Boolean. Show EULA dialog before install. |
73 extern const char kRequireEula[]; | 73 extern const char kRequireEula[]; |
74 // Boolean. Use experimental search engine selection dialog. | |
75 extern const char kSearchEngineExperimentPref[]; | |
76 // Boolean. Randomize logos in experimental search engine selection dialog. | |
77 extern const char kSearchEngineExperimentRandomizePref[]; | |
78 // Boolean. Install Chrome to system wise location. Cmd line override present. | 74 // Boolean. Install Chrome to system wise location. Cmd line override present. |
79 extern const char kSystemLevel[]; | 75 extern const char kSystemLevel[]; |
80 // Boolean. Run installer in verbose mode. Cmd line override present. | 76 // Boolean. Run installer in verbose mode. Cmd line override present. |
81 extern const char kVerboseLogging[]; | 77 extern const char kVerboseLogging[]; |
82 // Name of the block that contains the extensions on the master preferences. | 78 // Name of the block that contains the extensions on the master preferences. |
83 extern const char kExtensionsBlock[]; | 79 extern const char kExtensionsBlock[]; |
84 } // namespace master_preferences | 80 } // namespace master_preferences |
85 } // namespace installer | 81 } // namespace installer |
86 | 82 |
87 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 83 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
OLD | NEW |