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 #include "chrome/installer/util/master_preferences_constants.h" | 5 #include "chrome/installer/util/master_preferences_constants.h" |
6 | 6 |
7 namespace installer { | 7 namespace installer { |
8 namespace master_preferences { | 8 namespace master_preferences { |
9 const char kChrome[] = "chrome"; | |
10 const char kCreateAllShortcuts[] = "create_all_shortcuts"; | 9 const char kCreateAllShortcuts[] = "create_all_shortcuts"; |
11 const char kDisableLogging[] = "disable_logging"; | 10 const char kDisableLogging[] = "disable_logging"; |
12 const char kDistroDict[] = "distribution"; | 11 const char kDistroDict[] = "distribution"; |
13 const char kDistroImportBookmarksPref[] = "import_bookmarks"; | 12 const char kDistroImportBookmarksPref[] = "import_bookmarks"; |
14 const char kDistroImportBookmarksFromFilePref[] = | 13 const char kDistroImportBookmarksFromFilePref[] = |
15 "import_bookmarks_from_file"; | 14 "import_bookmarks_from_file"; |
16 const char kDistroImportHistoryPref[] = "import_history"; | 15 const char kDistroImportHistoryPref[] = "import_history"; |
17 const char kDistroImportHomePagePref[] = "import_home_page"; | 16 const char kDistroImportHomePagePref[] = "import_home_page"; |
18 const char kDistroImportSearchPref[] = "import_search_engine"; | 17 const char kDistroImportSearchPref[] = "import_search_engine"; |
19 const char kDistroPingDelay[] = "ping_delay"; | 18 const char kDistroPingDelay[] = "ping_delay"; |
(...skipping 19 matching lines...) Expand all Loading... |
39 const char kMsiProductId[] = "msi_product_id"; | 38 const char kMsiProductId[] = "msi_product_id"; |
40 const char kMultiInstall[] = "multi_install"; | 39 const char kMultiInstall[] = "multi_install"; |
41 const char kRequireEula[] = "require_eula"; | 40 const char kRequireEula[] = "require_eula"; |
42 const char kSystemLevel[] = "system_level"; | 41 const char kSystemLevel[] = "system_level"; |
43 const char kVerboseLogging[] = "verbose_logging"; | 42 const char kVerboseLogging[] = "verbose_logging"; |
44 const char kExtensionsBlock[] = "extensions.settings"; | 43 const char kExtensionsBlock[] = "extensions.settings"; |
45 const char kAllowDowngrade[] = "allow_downgrade"; | 44 const char kAllowDowngrade[] = "allow_downgrade"; |
46 | 45 |
47 } // namespace master_preferences | 46 } // namespace master_preferences |
48 } // namespace installer | 47 } // namespace installer |
OLD | NEW |