| 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 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 | 1016 |
| 1017 // Double that indicates positive (for matched forms) upload rate. | 1017 // Double that indicates positive (for matched forms) upload rate. |
| 1018 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; | 1018 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; |
| 1019 | 1019 |
| 1020 // Double that indicates negative (for not matched forms) upload rate. | 1020 // Double that indicates negative (for not matched forms) upload rate. |
| 1021 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; | 1021 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; |
| 1022 | 1022 |
| 1023 // Boolean option set to true on the first run. Non-persistent. | 1023 // Boolean option set to true on the first run. Non-persistent. |
| 1024 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 1024 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
| 1025 | 1025 |
| 1026 // String that indicates the base url of the Autofill service. |
| 1027 const char kAutofillServiceUrl[] = "autofill.service_url"; |
| 1028 |
| 1026 // Modifying bookmarks is completely disabled when this is set to false. | 1029 // Modifying bookmarks is completely disabled when this is set to false. |
| 1027 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 1030 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 1028 | 1031 |
| 1029 // Boolean that is true when the translate feature is enabled. | 1032 // Boolean that is true when the translate feature is enabled. |
| 1030 const char kEnableTranslate[] = "translate.enabled"; | 1033 const char kEnableTranslate[] = "translate.enabled"; |
| 1031 | 1034 |
| 1032 #if !defined(OS_ANDROID) | 1035 #if !defined(OS_ANDROID) |
| 1033 const char kPinnedTabs[] = "pinned_tabs"; | 1036 const char kPinnedTabs[] = "pinned_tabs"; |
| 1034 #endif | 1037 #endif |
| 1035 | 1038 |
| (...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2109 // Tracks the time of the last shown warning. Used to reset | 2112 // Tracks the time of the last shown warning. Used to reset |
| 2110 // |network_profile.warnings_left| after a silence period. | 2113 // |network_profile.warnings_left| after a silence period. |
| 2111 const char kNetworkProfileLastWarningTime[] = | 2114 const char kNetworkProfileLastWarningTime[] = |
| 2112 "network_profile.last_warning_time"; | 2115 "network_profile.last_warning_time"; |
| 2113 | 2116 |
| 2114 // 64-bit serialization of the time last policy usage statistics were collected | 2117 // 64-bit serialization of the time last policy usage statistics were collected |
| 2115 // by UMA_HISTOGRAM_ENUMERATION. | 2118 // by UMA_HISTOGRAM_ENUMERATION. |
| 2116 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2119 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2117 | 2120 |
| 2118 } // namespace prefs | 2121 } // namespace prefs |
| OLD | NEW |