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