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 1636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2052 // Tracks the time of the last shown warning. Used to reset | 2056 // Tracks the time of the last shown warning. Used to reset |
2053 // |network_profile.warnings_left| after a silence period. | 2057 // |network_profile.warnings_left| after a silence period. |
2054 const char kNetworkProfileLastWarningTime[] = | 2058 const char kNetworkProfileLastWarningTime[] = |
2055 "network_profile.last_warning_time"; | 2059 "network_profile.last_warning_time"; |
2056 | 2060 |
2057 // 64-bit serialization of the time last policy usage statistics were collected | 2061 // 64-bit serialization of the time last policy usage statistics were collected |
2058 // by UMA_HISTOGRAM_ENUMERATION. | 2062 // by UMA_HISTOGRAM_ENUMERATION. |
2059 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2063 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2060 | 2064 |
2061 } // namespace prefs | 2065 } // namespace prefs |
OLD | NEW |