| 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 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 const char kExtensionsUIDeveloperMode[] = "extensions.ui.developer_mode"; | 852 const char kExtensionsUIDeveloperMode[] = "extensions.ui.developer_mode"; |
| 853 | 853 |
| 854 // Integer pref that tracks the number of browser actions visible in the browser | 854 // Integer pref that tracks the number of browser actions visible in the browser |
| 855 // actions toolbar. | 855 // actions toolbar. |
| 856 const char kExtensionToolbarSize[] = "extensions.toolbarsize"; | 856 const char kExtensionToolbarSize[] = "extensions.toolbarsize"; |
| 857 | 857 |
| 858 // Dictionary pref that tracks which command belongs to which | 858 // Dictionary pref that tracks which command belongs to which |
| 859 // extension + named command pair. | 859 // extension + named command pair. |
| 860 const char kExtensionCommands[] = "extensions.commands"; | 860 const char kExtensionCommands[] = "extensions.commands"; |
| 861 | 861 |
| 862 // Integer pref that tracks how often the bubble has been shown to the user. |
| 863 const char kExtensionsSideloadWipeoutBubbleShown[] = |
| 864 "extensions.sideload_wipeout_bubble_shown"; |
| 865 |
| 862 // Pref containing the directory for internal plugins as written to the plugins | 866 // Pref containing the directory for internal plugins as written to the plugins |
| 863 // list (below). | 867 // list (below). |
| 864 const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory"; | 868 const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory"; |
| 865 | 869 |
| 866 // List pref containing information (dictionaries) on plugins. | 870 // List pref containing information (dictionaries) on plugins. |
| 867 const char kPluginsPluginsList[] = "plugins.plugins_list"; | 871 const char kPluginsPluginsList[] = "plugins.plugins_list"; |
| 868 | 872 |
| 869 // List pref containing names of plugins that are disabled by policy. | 873 // List pref containing names of plugins that are disabled by policy. |
| 870 const char kPluginsDisabledPlugins[] = "plugins.plugins_disabled"; | 874 const char kPluginsDisabledPlugins[] = "plugins.plugins_disabled"; |
| 871 | 875 |
| (...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2089 // Tracks the time of the last shown warning. Used to reset | 2093 // Tracks the time of the last shown warning. Used to reset |
| 2090 // |network_profile.warnings_left| after a silence period. | 2094 // |network_profile.warnings_left| after a silence period. |
| 2091 const char kNetworkProfileLastWarningTime[] = | 2095 const char kNetworkProfileLastWarningTime[] = |
| 2092 "network_profile.last_warning_time"; | 2096 "network_profile.last_warning_time"; |
| 2093 | 2097 |
| 2094 // 64-bit serialization of the time last policy usage statistics were collected | 2098 // 64-bit serialization of the time last policy usage statistics were collected |
| 2095 // by UMA_HISTOGRAM_ENUMERATION. | 2099 // by UMA_HISTOGRAM_ENUMERATION. |
| 2096 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2100 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2097 | 2101 |
| 2098 } // namespace prefs | 2102 } // namespace prefs |
| OLD | NEW |