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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 // The keyword of the default search provider. | 400 // The keyword of the default search provider. |
401 const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; | 401 const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; |
402 | 402 |
403 // The id of the default search provider. | 403 // The id of the default search provider. |
404 const char kDefaultSearchProviderID[] = "default_search_provider.id"; | 404 const char kDefaultSearchProviderID[] = "default_search_provider.id"; |
405 | 405 |
406 // The prepopulate id of the default search provider. | 406 // The prepopulate id of the default search provider. |
407 const char kDefaultSearchProviderPrepopulateID[] = | 407 const char kDefaultSearchProviderPrepopulateID[] = |
408 "default_search_provider.prepopulate_id"; | 408 "default_search_provider.prepopulate_id"; |
409 | 409 |
| 410 // The alternate urls of the default search provider. |
| 411 const char kDefaultSearchProviderAlternateURLs[] = |
| 412 "default_search_provider.alternate_urls"; |
| 413 |
410 // The dictionary key used when the default search providers are given | 414 // The dictionary key used when the default search providers are given |
411 // in the preferences file. Normally they are copied from the master | 415 // in the preferences file. Normally they are copied from the master |
412 // preferences file. | 416 // preferences file. |
413 const char kSearchProviderOverrides[] = "search_provider_overrides"; | 417 const char kSearchProviderOverrides[] = "search_provider_overrides"; |
414 // The format version for the dictionary above. | 418 // The format version for the dictionary above. |
415 const char kSearchProviderOverridesVersion[] = | 419 const char kSearchProviderOverridesVersion[] = |
416 "search_provider_overrides_version"; | 420 "search_provider_overrides_version"; |
417 | 421 |
418 // Boolean which specifies whether we should ask the user if we should download | 422 // Boolean which specifies whether we should ask the user if we should download |
419 // a file (true) or just download it automatically. | 423 // a file (true) or just download it automatically. |
(...skipping 1661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2081 // Tracks the time of the last shown warning. Used to reset | 2085 // Tracks the time of the last shown warning. Used to reset |
2082 // |network_profile.warnings_left| after a silence period. | 2086 // |network_profile.warnings_left| after a silence period. |
2083 const char kNetworkProfileLastWarningTime[] = | 2087 const char kNetworkProfileLastWarningTime[] = |
2084 "network_profile.last_warning_time"; | 2088 "network_profile.last_warning_time"; |
2085 | 2089 |
2086 // 64-bit serialization of the time last policy usage statistics were collected | 2090 // 64-bit serialization of the time last policy usage statistics were collected |
2087 // by UMA_HISTOGRAM_ENUMERATION. | 2091 // by UMA_HISTOGRAM_ENUMERATION. |
2088 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2092 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2089 | 2093 |
2090 } // namespace prefs | 2094 } // namespace prefs |
OLD | NEW |