| 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/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 2063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2074 const char kAppLauncherHasBeenEnabled[] = | 2074 const char kAppLauncherHasBeenEnabled[] = |
| 2075 "apps.app_launcher.has_been_enabled"; | 2075 "apps.app_launcher.has_been_enabled"; |
| 2076 | 2076 |
| 2077 // An enum indicating how the app launcher was enabled. E.g., via webstore, app | 2077 // An enum indicating how the app launcher was enabled. E.g., via webstore, app |
| 2078 // install, command line, etc. For UMA. | 2078 // install, command line, etc. For UMA. |
| 2079 const char kAppListEnableMethod[] = "app_list.how_enabled"; | 2079 const char kAppListEnableMethod[] = "app_list.how_enabled"; |
| 2080 | 2080 |
| 2081 // The time that the app launcher was enabled. Cleared when UMA is recorded. | 2081 // The time that the app launcher was enabled. Cleared when UMA is recorded. |
| 2082 const char kAppListEnableTime[] = "app_list.when_enabled"; | 2082 const char kAppListEnableTime[] = "app_list.when_enabled"; |
| 2083 | 2083 |
| 2084 // The last time the app list was launched. | |
| 2085 const char kAppListLastLaunchTime[] = "app_list.last_launch"; | |
| 2086 | |
| 2087 #if defined(OS_MACOSX) | 2084 #if defined(OS_MACOSX) |
| 2088 // Integer representing the version of the app launcher shortcut installed on | 2085 // Integer representing the version of the app launcher shortcut installed on |
| 2089 // the system. Incremented, e.g., when embedded icons change. | 2086 // the system. Incremented, e.g., when embedded icons change. |
| 2090 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; | 2087 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; |
| 2091 #endif | 2088 #endif |
| 2092 | 2089 |
| 2093 // A boolean identifying if we should show the app launcher promo or not. | 2090 // A boolean identifying if we should show the app launcher promo or not. |
| 2094 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; | 2091 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; |
| 2095 | 2092 |
| 2096 // A dictionary that tracks the Drive app to Chrome app mapping. The key is | 2093 // A dictionary that tracks the Drive app to Chrome app mapping. The key is |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2247 #endif | 2244 #endif |
| 2248 | 2245 |
| 2249 // The base64-encoded representation of the public key to use to validate origin | 2246 // The base64-encoded representation of the public key to use to validate origin |
| 2250 // trial token signatures. | 2247 // trial token signatures. |
| 2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2248 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2252 | 2249 |
| 2253 // A list of origin trial features to disable by policy. | 2250 // A list of origin trial features to disable by policy. |
| 2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2251 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2255 | 2252 |
| 2256 } // namespace prefs | 2253 } // namespace prefs |
| OLD | NEW |