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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 const char kDefaultSearchProviderID[] = "default_search_provider.id"; | 419 const char kDefaultSearchProviderID[] = "default_search_provider.id"; |
420 | 420 |
421 // The prepopulate id of the default search provider. | 421 // The prepopulate id of the default search provider. |
422 const char kDefaultSearchProviderPrepopulateID[] = | 422 const char kDefaultSearchProviderPrepopulateID[] = |
423 "default_search_provider.prepopulate_id"; | 423 "default_search_provider.prepopulate_id"; |
424 | 424 |
425 // The alternate urls of the default search provider. | 425 // The alternate urls of the default search provider. |
426 const char kDefaultSearchProviderAlternateURLs[] = | 426 const char kDefaultSearchProviderAlternateURLs[] = |
427 "default_search_provider.alternate_urls"; | 427 "default_search_provider.alternate_urls"; |
428 | 428 |
| 429 // Search term placement query parameter for the default search provider. |
| 430 const char kDefaultSearchProviderSearchTermsReplacementKey[] = |
| 431 "default_search_provider.search_terms_replacement_key"; |
| 432 |
429 // The dictionary key used when the default search providers are given | 433 // The dictionary key used when the default search providers are given |
430 // in the preferences file. Normally they are copied from the master | 434 // in the preferences file. Normally they are copied from the master |
431 // preferences file. | 435 // preferences file. |
432 const char kSearchProviderOverrides[] = "search_provider_overrides"; | 436 const char kSearchProviderOverrides[] = "search_provider_overrides"; |
433 // The format version for the dictionary above. | 437 // The format version for the dictionary above. |
434 const char kSearchProviderOverridesVersion[] = | 438 const char kSearchProviderOverridesVersion[] = |
435 "search_provider_overrides_version"; | 439 "search_provider_overrides_version"; |
436 | 440 |
437 // Boolean which specifies whether we should ask the user if we should download | 441 // Boolean which specifies whether we should ask the user if we should download |
438 // a file (true) or just download it automatically. | 442 // a file (true) or just download it automatically. |
(...skipping 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2175 // 64-bit serialization of the time last policy usage statistics were collected | 2179 // 64-bit serialization of the time last policy usage statistics were collected |
2176 // by UMA_HISTOGRAM_ENUMERATION. | 2180 // by UMA_HISTOGRAM_ENUMERATION. |
2177 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2181 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2178 | 2182 |
2179 #if defined(OS_CHROMEOS) | 2183 #if defined(OS_CHROMEOS) |
2180 // The RLZ brand code, if enabled. | 2184 // The RLZ brand code, if enabled. |
2181 const char kRLZBrand[] = "rlz.brand"; | 2185 const char kRLZBrand[] = "rlz.brand"; |
2182 #endif | 2186 #endif |
2183 | 2187 |
2184 } // namespace prefs | 2188 } // namespace prefs |
OLD | NEW |