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

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

Issue 1226643002: Welcome page changes for Windows 10 and over. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix RestoreOnStartupURLsPolicySpecified Created 5 years, 5 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 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // "import_home_page": false, 45 // "import_home_page": false,
46 // "import_search_engine": true, 46 // "import_search_engine": true,
47 // "ping_delay": 40, 47 // "ping_delay": 40,
48 // "show_welcome_page": true, 48 // "show_welcome_page": true,
49 // "skip_first_run_ui": true, 49 // "skip_first_run_ui": true,
50 // "do_not_launch_chrome": false, 50 // "do_not_launch_chrome": false,
51 // "make_chrome_default": false, 51 // "make_chrome_default": false,
52 // "make_chrome_default_for_user": true, 52 // "make_chrome_default_for_user": true,
53 // "require_eula": true, 53 // "require_eula": true,
54 // "system_level": false, 54 // "system_level": false,
55 // "verbose_logging": true 55 // "verbose_logging": true,
56 // "welcome_page_on_os_upgrade_enabled": false
gab 2015/07/09 18:05:13 If anyone re-uses this "prototype" without giving
grt (UTC plus 2) 2015/07/10 15:43:25 I chose to show the setting that would change Chro
56 // }, 57 // },
57 // "browser": { 58 // "browser": {
58 // "show_home_button": true 59 // "show_home_button": true
59 // }, 60 // },
60 // "bookmark_bar": { 61 // "bookmark_bar": {
61 // "show_on_all_tabs": true 62 // "show_on_all_tabs": true
62 // }, 63 // },
63 // "first_run_tabs": [ 64 // "first_run_tabs": [
64 // "http://gmail.com", 65 // "http://gmail.com",
65 // "https://igoogle.com" 66 // "https://igoogle.com"
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 bool chrome_; 214 bool chrome_;
214 bool multi_install_; 215 bool multi_install_;
215 216
216 private: 217 private:
217 DISALLOW_COPY_AND_ASSIGN(MasterPreferences); 218 DISALLOW_COPY_AND_ASSIGN(MasterPreferences);
218 }; 219 };
219 220
220 } // namespace installer 221 } // namespace installer
221 222
222 #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