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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 // The keyword of the default search provider. | 412 // The keyword of the default search provider. |
413 const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; | 413 const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; |
414 | 414 |
415 // The id of the default search provider. | 415 // The id of the default search provider. |
416 const char kDefaultSearchProviderID[] = "default_search_provider.id"; | 416 const char kDefaultSearchProviderID[] = "default_search_provider.id"; |
417 | 417 |
418 // The prepopulate id of the default search provider. | 418 // The prepopulate id of the default search provider. |
419 const char kDefaultSearchProviderPrepopulateID[] = | 419 const char kDefaultSearchProviderPrepopulateID[] = |
420 "default_search_provider.prepopulate_id"; | 420 "default_search_provider.prepopulate_id"; |
421 | 421 |
| 422 // The alternate urls of the default search provider. |
| 423 const char kDefaultSearchProviderAlternateURLs[] = |
| 424 "default_search_provider.alternate_urls"; |
| 425 |
422 // The dictionary key used when the default search providers are given | 426 // The dictionary key used when the default search providers are given |
423 // in the preferences file. Normally they are copied from the master | 427 // in the preferences file. Normally they are copied from the master |
424 // preferences file. | 428 // preferences file. |
425 const char kSearchProviderOverrides[] = "search_provider_overrides"; | 429 const char kSearchProviderOverrides[] = "search_provider_overrides"; |
426 // The format version for the dictionary above. | 430 // The format version for the dictionary above. |
427 const char kSearchProviderOverridesVersion[] = | 431 const char kSearchProviderOverridesVersion[] = |
428 "search_provider_overrides_version"; | 432 "search_provider_overrides_version"; |
429 | 433 |
430 // Boolean which specifies whether we should ask the user if we should download | 434 // Boolean which specifies whether we should ask the user if we should download |
431 // a file (true) or just download it automatically. | 435 // a file (true) or just download it automatically. |
(...skipping 1674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2106 // Tracks the time of the last shown warning. Used to reset | 2110 // Tracks the time of the last shown warning. Used to reset |
2107 // |network_profile.warnings_left| after a silence period. | 2111 // |network_profile.warnings_left| after a silence period. |
2108 const char kNetworkProfileLastWarningTime[] = | 2112 const char kNetworkProfileLastWarningTime[] = |
2109 "network_profile.last_warning_time"; | 2113 "network_profile.last_warning_time"; |
2110 | 2114 |
2111 // 64-bit serialization of the time last policy usage statistics were collected | 2115 // 64-bit serialization of the time last policy usage statistics were collected |
2112 // by UMA_HISTOGRAM_ENUMERATION. | 2116 // by UMA_HISTOGRAM_ENUMERATION. |
2113 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2117 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2114 | 2118 |
2115 } // namespace prefs | 2119 } // namespace prefs |
OLD | NEW |