Chromium Code Reviews| 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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 795 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; | 795 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; |
| 796 | 796 |
| 797 // Boolean pref which persists whether the extensions_ui is in developer mode | 797 // Boolean pref which persists whether the extensions_ui is in developer mode |
| 798 // (showing developer packing tools and extensions details) | 798 // (showing developer packing tools and extensions details) |
| 799 const char kExtensionsUIDeveloperMode[] = "extensions.ui.developer_mode"; | 799 const char kExtensionsUIDeveloperMode[] = "extensions.ui.developer_mode"; |
| 800 | 800 |
| 801 // Integer pref that tracks the number of browser actions visible in the browser | 801 // Integer pref that tracks the number of browser actions visible in the browser |
| 802 // actions toolbar. | 802 // actions toolbar. |
| 803 const char kExtensionToolbarSize[] = "extensions.toolbarsize"; | 803 const char kExtensionToolbarSize[] = "extensions.toolbarsize"; |
| 804 | 804 |
| 805 // Dictionary pref that tracks which keybinding belongs to which | 805 // Dictionary pref that tracks which commands belongs to which |
|
Yoyo Zhou
2012/07/31 08:02:28
nit: not grammatical.
| |
| 806 // extension + named command pair. | 806 // extension + named command pair. |
| 807 const char kExtensionKeybindings[] = "extensions.keybindings"; | 807 const char kExtensionCommands[] = "extensions.commands"; |
| 808 | 808 |
| 809 // Pref containing the directory for internal plugins as written to the plugins | 809 // Pref containing the directory for internal plugins as written to the plugins |
| 810 // list (below). | 810 // list (below). |
| 811 const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory"; | 811 const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory"; |
| 812 | 812 |
| 813 // List pref containing information (dictionaries) on plugins. | 813 // List pref containing information (dictionaries) on plugins. |
| 814 const char kPluginsPluginsList[] = "plugins.plugins_list"; | 814 const char kPluginsPluginsList[] = "plugins.plugins_list"; |
| 815 | 815 |
| 816 // List pref containing names of plugins that are disabled by policy. | 816 // List pref containing names of plugins that are disabled by policy. |
| 817 const char kPluginsDisabledPlugins[] = "plugins.plugins_disabled"; | 817 const char kPluginsDisabledPlugins[] = "plugins.plugins_disabled"; |
| (...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2008 const char kNetworkProfileLastWarningTime[] = | 2008 const char kNetworkProfileLastWarningTime[] = |
| 2009 "network_profile.last_warning_time"; | 2009 "network_profile.last_warning_time"; |
| 2010 | 2010 |
| 2011 #if defined(OS_MACOSX) | 2011 #if defined(OS_MACOSX) |
| 2012 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2012 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 2013 const char kMacLeopardObsoleteInfobarLastShown[] = | 2013 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 2014 "mac_105_obsolete_infobar_last_shown"; | 2014 "mac_105_obsolete_infobar_last_shown"; |
| 2015 #endif // defined(OS_MACOSX) | 2015 #endif // defined(OS_MACOSX) |
| 2016 | 2016 |
| 2017 } // namespace prefs | 2017 } // namespace prefs |
| OLD | NEW |