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