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 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 extern const char kDistroImportHistoryPref[]; | 43 extern const char kDistroImportHistoryPref[]; |
44 // Boolean pref that triggers silent import of the default browser homepage. | 44 // Boolean pref that triggers silent import of the default browser homepage. |
45 extern const char kDistroImportHomePagePref[]; | 45 extern const char kDistroImportHomePagePref[]; |
46 // Boolean pref that triggers silent import of the default search engine. | 46 // Boolean pref that triggers silent import of the default search engine. |
47 extern const char kDistroImportSearchPref[]; | 47 extern const char kDistroImportSearchPref[]; |
48 // Integer. RLZ ping delay in seconds. | 48 // Integer. RLZ ping delay in seconds. |
49 extern const char kDistroPingDelay[]; | 49 extern const char kDistroPingDelay[]; |
50 // Boolean pref that triggers loading the welcome page. | 50 // Boolean pref that triggers loading the welcome page. |
51 extern const char kDistroShowWelcomePage[]; | 51 extern const char kDistroShowWelcomePage[]; |
52 // Boolean pref that triggers skipping the first run dialogs. | 52 // Boolean pref that triggers skipping the first run dialogs. |
53 extern const char kDistroSkipFirstRunPref[]; | 53 extern const char kDistroSkipFirstRunPref[]; |
gab
2012/07/24 17:43:16
There already seems to be a skip first run pref, I
motek.
2012/07/25 10:08:59
Hmm... weird. I don't see anything in a diff here.
gab
2012/07/25 16:39:55
Yes this a general comment as I thought we should
| |
54 // Boolean. Do not show first run bubble, even if it would otherwise be shown. | 54 // Boolean. Do not show first run bubble, even if it would otherwise be shown. |
55 extern const char kDistroSuppressFirstRunBubble[]; | 55 extern const char kDistroSuppressFirstRunBubble[]; |
56 // Boolean. Do not launch Chrome after first install. Cmd line override present. | 56 // Boolean. Do not launch Chrome after first install. Cmd line override present. |
57 extern const char kDoNotLaunchChrome[]; | 57 extern const char kDoNotLaunchChrome[]; |
58 // Boolean. Do not register with Google Update to have Chrome launched after | 58 // Boolean. Do not register with Google Update to have Chrome launched after |
59 // install. Cmd line override present. | 59 // install. Cmd line override present. |
60 extern const char kDoNotRegisterForUpdateLaunch[]; | 60 extern const char kDoNotRegisterForUpdateLaunch[]; |
61 // String. Specifies the file path to write logging info to. | 61 // String. Specifies the file path to write logging info to. |
62 extern const char kLogFile[]; | 62 extern const char kLogFile[]; |
63 // Boolean. Register Chrome as default browser. Cmd line override present. | 63 // Boolean. Register Chrome as default browser. Cmd line override present. |
64 extern const char kMakeChromeDefault[]; | 64 extern const char kMakeChromeDefault[]; |
65 // Boolean. Register Chrome as default browser for the current user. | 65 // Boolean. Register Chrome as default browser for the current user. |
66 extern const char kMakeChromeDefaultForUser[]; | 66 extern const char kMakeChromeDefaultForUser[]; |
67 // Boolean. Expect to be run by an MSI installer. Cmd line override present. | 67 // Boolean. Expect to be run by an MSI installer. Cmd line override present. |
68 extern const char kMsi[]; | 68 extern const char kMsi[]; |
69 // Boolean. Support installing multiple products at once. | 69 // Boolean. Support installing multiple products at once. |
70 extern const char kMultiInstall[]; | 70 extern const char kMultiInstall[]; |
71 // Boolean. Show EULA dialog before install. | 71 // Boolean. Show EULA dialog before install. |
72 extern const char kRequireEula[]; | 72 extern const char kRequireEula[]; |
73 // Boolean. Indicates that the first-run 'set-as-default' dialog should not be | |
74 // shown. Relevant in Windows 8 context only. | |
gab
2012/07/24 17:43:16
In general it's preferable to refer to Windows 8+
motek.
2012/07/25 10:08:59
Done.
| |
75 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; | |
73 // Boolean. Install Chrome to system wise location. Cmd line override present. | 76 // Boolean. Install Chrome to system wise location. Cmd line override present. |
74 extern const char kSystemLevel[]; | 77 extern const char kSystemLevel[]; |
75 // Boolean. Run installer in verbose mode. Cmd line override present. | 78 // Boolean. Run installer in verbose mode. Cmd line override present. |
76 extern const char kVerboseLogging[]; | 79 extern const char kVerboseLogging[]; |
77 // Name of the block that contains the extensions on the master preferences. | 80 // Name of the block that contains the extensions on the master preferences. |
78 extern const char kExtensionsBlock[]; | 81 extern const char kExtensionsBlock[]; |
79 } // namespace master_preferences | 82 } // namespace master_preferences |
80 } // namespace installer | 83 } // namespace installer |
81 | 84 |
82 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 85 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
OLD | NEW |