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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 "profile.managed_default_content_settings.javascript"; | 1235 "profile.managed_default_content_settings.javascript"; |
1236 const char kManagedDefaultPluginsSetting[] = | 1236 const char kManagedDefaultPluginsSetting[] = |
1237 "profile.managed_default_content_settings.plugins"; | 1237 "profile.managed_default_content_settings.plugins"; |
1238 const char kManagedDefaultPopupsSetting[] = | 1238 const char kManagedDefaultPopupsSetting[] = |
1239 "profile.managed_default_content_settings.popups"; | 1239 "profile.managed_default_content_settings.popups"; |
1240 | 1240 |
1241 // Dictionary for storing the set of known background pages (keys are extension | 1241 // Dictionary for storing the set of known background pages (keys are extension |
1242 // IDs of background page owners, value is a boolean that is true if the user | 1242 // IDs of background page owners, value is a boolean that is true if the user |
1243 // needs to acknowledge this page. | 1243 // needs to acknowledge this page. |
1244 const char kKnownBackgroundPages[] = "background_pages.known"; | 1244 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1245 |
| 1246 // Dictionary that maps URL schemes (protocols) to URL handlers. |
| 1247 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; |
1245 } // namespace prefs | 1248 } // namespace prefs |
OLD | NEW |