| 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 // The keyword of the default search provider. | 396 // The keyword of the default search provider. |
| 397 const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; | 397 const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; |
| 398 | 398 |
| 399 // The id of the default search provider. | 399 // The id of the default search provider. |
| 400 const char kDefaultSearchProviderID[] = "default_search_provider.id"; | 400 const char kDefaultSearchProviderID[] = "default_search_provider.id"; |
| 401 | 401 |
| 402 // The prepopulate id of the default search provider. | 402 // The prepopulate id of the default search provider. |
| 403 const char kDefaultSearchProviderPrepopulateID[] = | 403 const char kDefaultSearchProviderPrepopulateID[] = |
| 404 "default_search_provider.prepopulate_id"; | 404 "default_search_provider.prepopulate_id"; |
| 405 | 405 |
| 406 // The alternate urls of the default search provider. |
| 407 const char kDefaultSearchProviderAlternateURLs[] = |
| 408 "default_search_provider.alternate_urls"; |
| 409 |
| 406 // The dictionary key used when the default search providers are given | 410 // The dictionary key used when the default search providers are given |
| 407 // in the preferences file. Normally they are copied from the master | 411 // in the preferences file. Normally they are copied from the master |
| 408 // preferences file. | 412 // preferences file. |
| 409 const char kSearchProviderOverrides[] = "search_provider_overrides"; | 413 const char kSearchProviderOverrides[] = "search_provider_overrides"; |
| 410 // The format version for the dictionary above. | 414 // The format version for the dictionary above. |
| 411 const char kSearchProviderOverridesVersion[] = | 415 const char kSearchProviderOverridesVersion[] = |
| 412 "search_provider_overrides_version"; | 416 "search_provider_overrides_version"; |
| 413 | 417 |
| 414 // Boolean which specifies whether we should ask the user if we should download | 418 // Boolean which specifies whether we should ask the user if we should download |
| 415 // a file (true) or just download it automatically. | 419 // a file (true) or just download it automatically. |
| (...skipping 1610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2026 | 2030 |
| 2027 // Counts how many more times the 'profile on a network share' warning should be | 2031 // Counts how many more times the 'profile on a network share' warning should be |
| 2028 // shown to the user before the next silence period. | 2032 // shown to the user before the next silence period. |
| 2029 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2033 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2030 // Tracks the time of the last shown warning. Used to reset | 2034 // Tracks the time of the last shown warning. Used to reset |
| 2031 // |network_profile.warnings_left| after a silence period. | 2035 // |network_profile.warnings_left| after a silence period. |
| 2032 const char kNetworkProfileLastWarningTime[] = | 2036 const char kNetworkProfileLastWarningTime[] = |
| 2033 "network_profile.last_warning_time"; | 2037 "network_profile.last_warning_time"; |
| 2034 | 2038 |
| 2035 } // namespace prefs | 2039 } // namespace prefs |
| OLD | NEW |