| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 2161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2172 const char kAppLauncherHasBeenEnabled[] = | 2172 const char kAppLauncherHasBeenEnabled[] = |
| 2173 "apps.app_launcher.has_been_enabled"; | 2173 "apps.app_launcher.has_been_enabled"; |
| 2174 | 2174 |
| 2175 // An enum indicating how the app launcher was enabled. E.g., via webstore, app | 2175 // An enum indicating how the app launcher was enabled. E.g., via webstore, app |
| 2176 // install, command line, etc. For UMA. | 2176 // install, command line, etc. For UMA. |
| 2177 const char kAppListEnableMethod[] = "app_list.how_enabled"; | 2177 const char kAppListEnableMethod[] = "app_list.how_enabled"; |
| 2178 | 2178 |
| 2179 // The time that the app launcher was enabled. Cleared when UMA is recorded. | 2179 // The time that the app launcher was enabled. Cleared when UMA is recorded. |
| 2180 const char kAppListEnableTime[] = "app_list.when_enabled"; | 2180 const char kAppListEnableTime[] = "app_list.when_enabled"; |
| 2181 | 2181 |
| 2182 // The last time the app list was launched. |
| 2183 const char kAppListLastLaunchTime[] = "app_list.last_launch"; |
| 2184 |
| 2182 // Integer representing the version of the app launcher shortcut installed on | 2185 // Integer representing the version of the app launcher shortcut installed on |
| 2183 // the system. Incremented, e.g., when embedded icons change. | 2186 // the system. Incremented, e.g., when embedded icons change. |
| 2184 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; | 2187 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; |
| 2185 | 2188 |
| 2186 // A boolean identifying if we should show the app launcher promo or not. | 2189 // A boolean identifying if we should show the app launcher promo or not. |
| 2187 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; | 2190 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; |
| 2188 | 2191 |
| 2189 // A dictionary that tracks the Drive app to Chrome app mapping. The key is | 2192 // A dictionary that tracks the Drive app to Chrome app mapping. The key is |
| 2190 // a Drive app id and the value is the corresponding Chrome app id. The pref | 2193 // a Drive app id and the value is the corresponding Chrome app id. The pref |
| 2191 // is unsynable and used to track local mappings only. | 2194 // is unsynable and used to track local mappings only. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2272 // (name and a list of clients that registered the whitelist). | 2275 // (name and a list of clients that registered the whitelist). |
| 2273 const char kRegisteredSupervisedUserWhitelists[] = | 2276 const char kRegisteredSupervisedUserWhitelists[] = |
| 2274 "supervised_users.whitelists"; | 2277 "supervised_users.whitelists"; |
| 2275 | 2278 |
| 2276 #if defined(ENABLE_EXTENSIONS) | 2279 #if defined(ENABLE_EXTENSIONS) |
| 2277 // Policy that indicates how to handle animated images. | 2280 // Policy that indicates how to handle animated images. |
| 2278 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2281 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2279 #endif | 2282 #endif |
| 2280 | 2283 |
| 2281 } // namespace prefs | 2284 } // namespace prefs |
| OLD | NEW |