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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 2145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2156 // uninstalling background apps. | 2156 // uninstalling background apps. |
2157 const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item"; | 2157 const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item"; |
2158 | 2158 |
2159 // Set to true if the user removed our login item so we should not create a new | 2159 // Set to true if the user removed our login item so we should not create a new |
2160 // one when uninstalling background apps. | 2160 // one when uninstalling background apps. |
2161 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; | 2161 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; |
2162 | 2162 |
2163 // Set to true if background mode is enabled on this browser. | 2163 // Set to true if background mode is enabled on this browser. |
2164 const char kBackgroundModeEnabled[] = "background_mode.enabled"; | 2164 const char kBackgroundModeEnabled[] = "background_mode.enabled"; |
2165 | 2165 |
| 2166 // Set to true if hardware acceleration mode is enabled on this browser. |
| 2167 const char kHardwareAccelerationModeEnabled[] = |
| 2168 "hardware_acceleration_mode.enabled"; |
| 2169 |
2166 // List of protocol handlers. | 2170 // List of protocol handlers. |
2167 const char kRegisteredProtocolHandlers[] = | 2171 const char kRegisteredProtocolHandlers[] = |
2168 "custom_handlers.registered_protocol_handlers"; | 2172 "custom_handlers.registered_protocol_handlers"; |
2169 | 2173 |
2170 // List of protocol handlers the user has requested not to be asked about again. | 2174 // List of protocol handlers the user has requested not to be asked about again. |
2171 const char kIgnoredProtocolHandlers[] = | 2175 const char kIgnoredProtocolHandlers[] = |
2172 "custom_handlers.ignored_protocol_handlers"; | 2176 "custom_handlers.ignored_protocol_handlers"; |
2173 | 2177 |
2174 // Whether user-specified handlers for protocols and content types can be | 2178 // Whether user-specified handlers for protocols and content types can be |
2175 // specified. | 2179 // specified. |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2345 const char kRLZBrand[] = "rlz.brand"; | 2349 const char kRLZBrand[] = "rlz.brand"; |
2346 // Whether RLZ pings are disabled. | 2350 // Whether RLZ pings are disabled. |
2347 const char kRLZDisabled[] = "rlz.disabled"; | 2351 const char kRLZDisabled[] = "rlz.disabled"; |
2348 #endif | 2352 #endif |
2349 | 2353 |
2350 // The directory in user data dir that contains the profile to be used with the | 2354 // The directory in user data dir that contains the profile to be used with the |
2351 // app launcher. | 2355 // app launcher. |
2352 extern const char kAppListProfile[] = "app_list.profile"; | 2356 extern const char kAppListProfile[] = "app_list.profile"; |
2353 | 2357 |
2354 } // namespace prefs | 2358 } // namespace prefs |
OLD | NEW |