| 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 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 Loading... |
| 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 |
| 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 Loading... |
| 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_ |
| OLD | NEW |