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 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1511 | 1511 |
1512 // Whether Extensions are enabled. | 1512 // Whether Extensions are enabled. |
1513 const char kDisableExtensions[] = "extensions.disabled"; | 1513 const char kDisableExtensions[] = "extensions.disabled"; |
1514 | 1514 |
1515 // Whether the plugin finder that lets you install missing plugins is enabled. | 1515 // Whether the plugin finder that lets you install missing plugins is enabled. |
1516 const char kDisablePluginFinder[] = "plugins.disable_plugin_finder"; | 1516 const char kDisablePluginFinder[] = "plugins.disable_plugin_finder"; |
1517 | 1517 |
1518 // Customized app page names that appear on the New Tab Page. | 1518 // Customized app page names that appear on the New Tab Page. |
1519 const char kNtpAppPageNames[] = "ntp.app_page_names"; | 1519 const char kNtpAppPageNames[] = "ntp.app_page_names"; |
1520 | 1520 |
| 1521 const char kExtensionSidebarWidth[] = "extensions.sidebar.width"; |
| 1522 |
1521 #if defined(OS_ANDROID) | 1523 #if defined(OS_ANDROID) |
1522 // Keeps track of currently open tabs collapsed state in the Other Devices menu. | 1524 // Keeps track of currently open tabs collapsed state in the Other Devices menu. |
1523 const char kNtpCollapsedCurrentlyOpenTabs[] = "ntp.collapsed_open_tabs"; | 1525 const char kNtpCollapsedCurrentlyOpenTabs[] = "ntp.collapsed_open_tabs"; |
1524 #endif | 1526 #endif |
1525 | 1527 |
1526 // Keeps track of which sessions are collapsed in the Other Devices menu. | 1528 // Keeps track of which sessions are collapsed in the Other Devices menu. |
1527 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; | 1529 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; |
1528 | 1530 |
1529 #if defined(OS_ANDROID) | 1531 #if defined(OS_ANDROID) |
1530 // Keeps track of recently closed tabs collapsed state in the Other Devices | 1532 // Keeps track of recently closed tabs collapsed state in the Other Devices |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2275 "supervised_users.whitelists"; | 2277 "supervised_users.whitelists"; |
2276 | 2278 |
2277 #if defined(ENABLE_EXTENSIONS) | 2279 #if defined(ENABLE_EXTENSIONS) |
2278 // Policy that indicates how to handle animated images. | 2280 // Policy that indicates how to handle animated images. |
2279 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2281 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2280 #endif | 2282 #endif |
2281 | 2283 |
2282 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2284 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2283 | 2285 |
2284 } // namespace prefs | 2286 } // namespace prefs |
OLD | NEW |