| 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 2166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2177 // one when uninstalling background apps. | 2177 // one when uninstalling background apps. |
| 2178 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; | 2178 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; |
| 2179 | 2179 |
| 2180 // Set to true if background mode is enabled on this browser. | 2180 // Set to true if background mode is enabled on this browser. |
| 2181 const char kBackgroundModeEnabled[] = "background_mode.enabled"; | 2181 const char kBackgroundModeEnabled[] = "background_mode.enabled"; |
| 2182 | 2182 |
| 2183 // Set to true if hardware acceleration mode is enabled on this browser. | 2183 // Set to true if hardware acceleration mode is enabled on this browser. |
| 2184 const char kHardwareAccelerationModeEnabled[] = | 2184 const char kHardwareAccelerationModeEnabled[] = |
| 2185 "hardware_acceleration_mode.enabled"; | 2185 "hardware_acceleration_mode.enabled"; |
| 2186 | 2186 |
| 2187 // Hardware acceleration mode from previous browser launch. |
| 2188 const char kHardwareAccelerationModePrevious[] = |
| 2189 "hardware_acceleration_mode_previous"; |
| 2190 |
| 2187 // List of protocol handlers. | 2191 // List of protocol handlers. |
| 2188 const char kRegisteredProtocolHandlers[] = | 2192 const char kRegisteredProtocolHandlers[] = |
| 2189 "custom_handlers.registered_protocol_handlers"; | 2193 "custom_handlers.registered_protocol_handlers"; |
| 2190 | 2194 |
| 2191 // List of protocol handlers the user has requested not to be asked about again. | 2195 // List of protocol handlers the user has requested not to be asked about again. |
| 2192 const char kIgnoredProtocolHandlers[] = | 2196 const char kIgnoredProtocolHandlers[] = |
| 2193 "custom_handlers.ignored_protocol_handlers"; | 2197 "custom_handlers.ignored_protocol_handlers"; |
| 2194 | 2198 |
| 2195 // Whether user-specified handlers for protocols and content types can be | 2199 // Whether user-specified handlers for protocols and content types can be |
| 2196 // specified. | 2200 // specified. |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2376 // the time of the last ping. | 2380 // the time of the last ping. |
| 2377 extern const char kAppListLaunchCount[] = "app_list.launch_count"; | 2381 extern const char kAppListLaunchCount[] = "app_list.launch_count"; |
| 2378 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2382 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
| 2379 | 2383 |
| 2380 // The number of times the an app was launched from the app launcher since last | 2384 // The number of times the an app was launched from the app launcher since last |
| 2381 // ping and the time of the last ping. | 2385 // ping and the time of the last ping. |
| 2382 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2386 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
| 2383 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2387 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
| 2384 | 2388 |
| 2385 } // namespace prefs | 2389 } // namespace prefs |
| OLD | NEW |