| 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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 // Boolean pref indicating whether the instant confirm dialog has been shown. | 465 // Boolean pref indicating whether the instant confirm dialog has been shown. |
| 466 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; | 466 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; |
| 467 | 467 |
| 468 // Boolean pref indicating if instant is enabled. | 468 // Boolean pref indicating if instant is enabled. |
| 469 const char kInstantEnabled[] = "instant.enabled"; | 469 const char kInstantEnabled[] = "instant.enabled"; |
| 470 | 470 |
| 471 // Prefix URL for the (experimental) ZeroSuggest provider. | 471 // Prefix URL for the (experimental) ZeroSuggest provider. |
| 472 const char kExperimentalZeroSuggestUrlPrefix[] = | 472 const char kExperimentalZeroSuggestUrlPrefix[] = |
| 473 "instant.experimental_zero_suggest_url_prefix"; | 473 "instant.experimental_zero_suggest_url_prefix"; |
| 474 | 474 |
| 475 // Boolean pref indicating if instant search provider logo should be shown. |
| 476 const char kInstantShowSearchProviderLogo[] = |
| 477 "instant.show_search_provider_logo"; |
| 478 |
| 475 // Used to migrate preferences from local state to user preferences to | 479 // Used to migrate preferences from local state to user preferences to |
| 476 // enable multiple profiles. | 480 // enable multiple profiles. |
| 477 // BITMASK with possible values (see browser_prefs.cc for enum): | 481 // BITMASK with possible values (see browser_prefs.cc for enum): |
| 478 // 0: No preferences migrated. | 482 // 0: No preferences migrated. |
| 479 // 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList | 483 // 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList |
| 480 // 2: Browser window preferences migrated: kDevToolsSplitLocation and | 484 // 2: Browser window preferences migrated: kDevToolsSplitLocation and |
| 481 // kBrowserWindowPlacement | 485 // kBrowserWindowPlacement |
| 482 const char kMultipleProfilePrefMigration[] = | 486 const char kMultipleProfilePrefMigration[] = |
| 483 "local_state.multiple_profile_prefs_version"; | 487 "local_state.multiple_profile_prefs_version"; |
| 484 | 488 |
| (...skipping 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2030 | 2034 |
| 2031 // Counts how many more times the 'profile on a network share' warning should be | 2035 // Counts how many more times the 'profile on a network share' warning should be |
| 2032 // shown to the user before the next silence period. | 2036 // shown to the user before the next silence period. |
| 2033 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2037 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2034 // Tracks the time of the last shown warning. Used to reset | 2038 // Tracks the time of the last shown warning. Used to reset |
| 2035 // |network_profile.warnings_left| after a silence period. | 2039 // |network_profile.warnings_left| after a silence period. |
| 2036 const char kNetworkProfileLastWarningTime[] = | 2040 const char kNetworkProfileLastWarningTime[] = |
| 2037 "network_profile.last_warning_time"; | 2041 "network_profile.last_warning_time"; |
| 2038 | 2042 |
| 2039 } // namespace prefs | 2043 } // namespace prefs |
| OLD | NEW |