OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // Boolean. Show EULA dialog before install. | 58 // Boolean. Show EULA dialog before install. |
59 extern const wchar_t kRequireEula[]; | 59 extern const wchar_t kRequireEula[]; |
60 // Boolean. Install Chrome to system wise location. Cmd line override present. | 60 // Boolean. Install Chrome to system wise location. Cmd line override present. |
61 extern const wchar_t kSystemLevel[]; | 61 extern const wchar_t kSystemLevel[]; |
62 // Boolean. Run installer in verbose mode. Cmd line override present. | 62 // Boolean. Run installer in verbose mode. Cmd line override present. |
63 extern const wchar_t kVerboseLogging[]; | 63 extern const wchar_t kVerboseLogging[]; |
64 // Name of the block that contains the extensions on the master preferences. | 64 // Name of the block that contains the extensions on the master preferences. |
65 extern const wchar_t kExtensionsBlock[]; | 65 extern const wchar_t kExtensionsBlock[]; |
66 // Boolean. Use experimental search engine selection dialog. | 66 // Boolean. Use experimental search engine selection dialog. |
67 extern const wchar_t kSearchEngineExperimentPref[]; | 67 extern const wchar_t kSearchEngineExperimentPref[]; |
| 68 // Boolean. Randomize logos in experimental search engine selection dialog. |
| 69 extern const wchar_t kSearchEngineExperimentRandomizePref[]; |
68 } | 70 } |
69 } | 71 } |
70 | 72 |
71 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 73 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
OLD | NEW |