| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1236 "profile.managed_default_content_settings.javascript"; | 1236 "profile.managed_default_content_settings.javascript"; |
| 1237 const char kManagedDefaultPluginsSetting[] = | 1237 const char kManagedDefaultPluginsSetting[] = |
| 1238 "profile.managed_default_content_settings.plugins"; | 1238 "profile.managed_default_content_settings.plugins"; |
| 1239 const char kManagedDefaultPopupsSetting[] = | 1239 const char kManagedDefaultPopupsSetting[] = |
| 1240 "profile.managed_default_content_settings.popups"; | 1240 "profile.managed_default_content_settings.popups"; |
| 1241 | 1241 |
| 1242 // Dictionary for storing the set of known background pages (keys are extension | 1242 // Dictionary for storing the set of known background pages (keys are extension |
| 1243 // IDs of background page owners, value is a boolean that is true if the user | 1243 // IDs of background page owners, value is a boolean that is true if the user |
| 1244 // needs to acknowledge this page. | 1244 // needs to acknowledge this page. |
| 1245 const char kKnownBackgroundPages[] = "background_pages.known"; | 1245 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1246 |
| 1247 // Dictionary that maps URL schemes (protocols) to URL handlers. |
| 1248 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; |
| 1246 } // namespace prefs | 1249 } // namespace prefs |
| OLD | NEW |