| 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2189 // An enum indicating how the app launcher was enabled. E.g., via webstore, app | 2189 // An enum indicating how the app launcher was enabled. E.g., via webstore, app |
| 2190 // install, command line, etc. For UMA. | 2190 // install, command line, etc. For UMA. |
| 2191 const char kAppListEnableMethod[] = "app_list.how_enabled"; | 2191 const char kAppListEnableMethod[] = "app_list.how_enabled"; |
| 2192 | 2192 |
| 2193 // The time that the app launcher was enabled. Cleared when UMA is recorded. | 2193 // The time that the app launcher was enabled. Cleared when UMA is recorded. |
| 2194 const char kAppListEnableTime[] = "app_list.when_enabled"; | 2194 const char kAppListEnableTime[] = "app_list.when_enabled"; |
| 2195 | 2195 |
| 2196 // Keeps local state of app list while sync service is not available. | 2196 // Keeps local state of app list while sync service is not available. |
| 2197 const char kAppListLocalState[] = "app_list.local_state"; | 2197 const char kAppListLocalState[] = "app_list.local_state"; |
| 2198 | 2198 |
| 2199 #if defined(OS_MACOSX) | |
| 2200 // Integer representing the version of the app launcher shortcut installed on | |
| 2201 // the system. Incremented, e.g., when embedded icons change. | |
| 2202 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; | |
| 2203 #endif | |
| 2204 | |
| 2205 // A boolean identifying if we should show the app launcher promo or not. | 2199 // A boolean identifying if we should show the app launcher promo or not. |
| 2206 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; | 2200 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; |
| 2207 | 2201 |
| 2208 // A dictionary that tracks the Drive app to Chrome app mapping. The key is | 2202 // A dictionary that tracks the Drive app to Chrome app mapping. The key is |
| 2209 // a Drive app id and the value is the corresponding Chrome app id. The pref | 2203 // a Drive app id and the value is the corresponding Chrome app id. The pref |
| 2210 // is unsynable and used to track local mappings only. | 2204 // is unsynable and used to track local mappings only. |
| 2211 const char kAppLauncherDriveAppMapping[] = | 2205 const char kAppLauncherDriveAppMapping[] = |
| 2212 "apps.app_launcher.drive_app_mapping"; | 2206 "apps.app_launcher.drive_app_mapping"; |
| 2213 | 2207 |
| 2214 // A list of Drive app ids that tracks the uninstallable Drive apps. | 2208 // A list of Drive app ids that tracks the uninstallable Drive apps. |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2521 // settings. | 2515 // settings. |
| 2522 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = | 2516 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = |
| 2523 "settings_reset_prompt.last_triggered_for_startup_urls"; | 2517 "settings_reset_prompt.last_triggered_for_startup_urls"; |
| 2524 | 2518 |
| 2525 // Timestamp of the last time the settings reset prompt was shown during the | 2519 // Timestamp of the last time the settings reset prompt was shown during the |
| 2526 // current prompt wave asking the user if they want to restore their homepage. | 2520 // current prompt wave asking the user if they want to restore their homepage. |
| 2527 const char kSettingsResetPromptLastTriggeredForHomepage[] = | 2521 const char kSettingsResetPromptLastTriggeredForHomepage[] = |
| 2528 "settings_reset_prompt.last_triggered_for_homepage"; | 2522 "settings_reset_prompt.last_triggered_for_homepage"; |
| 2529 | 2523 |
| 2530 } // namespace prefs | 2524 } // namespace prefs |
| OLD | NEW |