| 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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 990 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; | 990 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; |
| 991 #endif | 991 #endif |
| 992 | 992 |
| 993 // Boolean that indicates whether we should check if we are the default browser | 993 // Boolean that indicates whether we should check if we are the default browser |
| 994 // on start-up. | 994 // on start-up. |
| 995 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 995 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
| 996 | 996 |
| 997 #if defined(OS_WIN) | 997 #if defined(OS_WIN) |
| 998 // By default, setting Chrome as default during first run on Windows 8 will | 998 // By default, setting Chrome as default during first run on Windows 8 will |
| 999 // trigger shutting down the current instance and spawning a new (Metro) | 999 // trigger shutting down the current instance and spawning a new (Metro) |
| 1000 // Chrome. This boolean preference supresses this behaviour. | 1000 // Chrome. This boolean preference suppresses this behaviour. |
| 1001 const char kSuppressSwitchToMetroModeOnSetDefault[] = | 1001 const char kSuppressSwitchToMetroModeOnSetDefault[] = |
| 1002 "browser.suppress_switch_to_metro_mode_on_set_default"; | 1002 "browser.suppress_switch_to_metro_mode_on_set_default"; |
| 1003 #endif | 1003 #endif |
| 1004 | 1004 |
| 1005 // Policy setting whether default browser check should be disabled and default | 1005 // Policy setting whether default browser check should be disabled and default |
| 1006 // browser registration should take place. | 1006 // browser registration should take place. |
| 1007 const char kDefaultBrowserSettingEnabled[] = | 1007 const char kDefaultBrowserSettingEnabled[] = |
| 1008 "browser.default_browser_setting_enabled"; | 1008 "browser.default_browser_setting_enabled"; |
| 1009 | 1009 |
| 1010 #if defined(OS_MACOSX) | 1010 #if defined(OS_MACOSX) |
| (...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2602 #if defined(OS_ANDROID) | 2602 #if defined(OS_ANDROID) |
| 2603 // A list of partner bookmark rename/remove mappings. | 2603 // A list of partner bookmark rename/remove mappings. |
| 2604 // Each list item is a dictionary containing a "url", a "provider_title" and | 2604 // Each list item is a dictionary containing a "url", a "provider_title" and |
| 2605 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2605 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2606 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2606 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2607 // title or an empty string if the bookmark node was removed. | 2607 // title or an empty string if the bookmark node was removed. |
| 2608 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2608 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2609 #endif | 2609 #endif |
| 2610 | 2610 |
| 2611 } // namespace prefs | 2611 } // namespace prefs |
| OLD | NEW |