| 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 #endif | 592 #endif |
| 593 | 593 |
| 594 // Boolean that is false if we should show window manager decorations. If | 594 // Boolean that is false if we should show window manager decorations. If |
| 595 // true, we draw a custom chrome frame (thicker title bar and blue border). | 595 // true, we draw a custom chrome frame (thicker title bar and blue border). |
| 596 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; | 596 const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame"; |
| 597 | 597 |
| 598 // Boolean that indicates whether the infobar explaining that search can be | 598 // Boolean that indicates whether the infobar explaining that search can be |
| 599 // done directly from the omnibox should be shown. | 599 // done directly from the omnibox should be shown. |
| 600 const char kShowOmniboxSearchHint[] = "browser.show_omnibox_search_hint"; | 600 const char kShowOmniboxSearchHint[] = "browser.show_omnibox_search_hint"; |
| 601 | 601 |
| 602 // The registered service map. |
| 603 const char kIntroducerRegistrations[] = "profile.introducer_registrations"; |
| 604 |
| 602 // The list of origins which are allowed|denied to show desktop notifications. | 605 // The list of origins which are allowed|denied to show desktop notifications. |
| 603 const char kDesktopNotificationDefaultContentSetting[] = | 606 const char kDesktopNotificationDefaultContentSetting[] = |
| 604 "profile.notifications_default_content_setting"; | 607 "profile.notifications_default_content_setting"; |
| 605 const char kDesktopNotificationAllowedOrigins[] = | 608 const char kDesktopNotificationAllowedOrigins[] = |
| 606 "profile.notification_allowed_sites"; | 609 "profile.notification_allowed_sites"; |
| 607 const char kDesktopNotificationDeniedOrigins[] = | 610 const char kDesktopNotificationDeniedOrigins[] = |
| 608 "profile.notification_denied_sites"; | 611 "profile.notification_denied_sites"; |
| 609 | 612 |
| 610 // The preferred position (which corner of screen) for desktop notifications. | 613 // The preferred position (which corner of screen) for desktop notifications. |
| 611 const char kDesktopNotificationPosition[] = | 614 const char kDesktopNotificationPosition[] = |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1282 "profile.managed_popups_blocked_for_urls"; | 1285 "profile.managed_popups_blocked_for_urls"; |
| 1283 | 1286 |
| 1284 // Dictionary for storing the set of known background pages (keys are extension | 1287 // Dictionary for storing the set of known background pages (keys are extension |
| 1285 // IDs of background page owners, value is a boolean that is true if the user | 1288 // IDs of background page owners, value is a boolean that is true if the user |
| 1286 // needs to acknowledge this page. | 1289 // needs to acknowledge this page. |
| 1287 const char kKnownBackgroundPages[] = "background_pages.known"; | 1290 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1288 | 1291 |
| 1289 // Dictionary that maps URL schemes (protocols) to URL handlers. | 1292 // Dictionary that maps URL schemes (protocols) to URL handlers. |
| 1290 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; | 1293 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; |
| 1291 } // namespace prefs | 1294 } // namespace prefs |
| OLD | NEW |