| 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 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2089 // Tracks the time of the last shown warning. Used to reset | 2093 // Tracks the time of the last shown warning. Used to reset |
| 2090 // |network_profile.warnings_left| after a silence period. | 2094 // |network_profile.warnings_left| after a silence period. |
| 2091 const char kNetworkProfileLastWarningTime[] = | 2095 const char kNetworkProfileLastWarningTime[] = |
| 2092 "network_profile.last_warning_time"; | 2096 "network_profile.last_warning_time"; |
| 2093 | 2097 |
| 2094 // 64-bit serialization of the time last policy usage statistics were collected | 2098 // 64-bit serialization of the time last policy usage statistics were collected |
| 2095 // by UMA_HISTOGRAM_ENUMERATION. | 2099 // by UMA_HISTOGRAM_ENUMERATION. |
| 2096 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2100 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2097 | 2101 |
| 2098 } // namespace prefs | 2102 } // namespace prefs |
| OLD | NEW |