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

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

Issue 1439803002: Remove logic for unused foreground auto-launch mode on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@d1_rm_auto_launch_trial
Patch Set: Created 5 years, 1 month 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 functions processing master preference file used by 5 // This file contains functions processing master preference file used by
6 // setup and first run. 6 // setup and first run.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ 8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_
9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ 9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_
10 10
(...skipping 18 matching lines...) Expand all
29 29
30 // The master preferences is a JSON file with the same entries as the 30 // The master preferences is a JSON file with the same entries as the
31 // 'Default\Preferences' file. This function parses the distribution 31 // 'Default\Preferences' file. This function parses the distribution
32 // section of the preferences file. 32 // section of the preferences file.
33 // 33 //
34 // A prototypical 'master_preferences' file looks like this: 34 // A prototypical 'master_preferences' file looks like this:
35 // 35 //
36 // { 36 // {
37 // "distribution": { 37 // "distribution": {
38 // "alternate_shortcut_text": false, 38 // "alternate_shortcut_text": false,
39 // "auto_launch_chrome": false,
40 // "chrome_shortcut_icon_index": 0, 39 // "chrome_shortcut_icon_index": 0,
41 // "create_all_shortcuts": true, 40 // "create_all_shortcuts": true,
42 // "import_bookmarks": false, 41 // "import_bookmarks": false,
43 // "import_bookmarks_from_file": "c:\\path", 42 // "import_bookmarks_from_file": "c:\\path",
44 // "import_history": false, 43 // "import_history": false,
45 // "import_home_page": false, 44 // "import_home_page": false,
46 // "import_search_engine": true, 45 // "import_search_engine": true,
47 // "ping_delay": 40, 46 // "ping_delay": 40,
48 // "show_welcome_page": true, 47 // "show_welcome_page": true,
49 // "skip_first_run_ui": true, 48 // "skip_first_run_ui": true,
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 bool chrome_; 214 bool chrome_;
216 bool multi_install_; 215 bool multi_install_;
217 216
218 private: 217 private:
219 DISALLOW_COPY_AND_ASSIGN(MasterPreferences); 218 DISALLOW_COPY_AND_ASSIGN(MasterPreferences);
220 }; 219 };
221 220
222 } // namespace installer 221 } // namespace installer
223 222
224 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ 223 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698