| 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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 | 1009 |
| 1010 // Double that indicates positive (for matched forms) upload rate. | 1010 // Double that indicates positive (for matched forms) upload rate. |
| 1011 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; | 1011 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; |
| 1012 | 1012 |
| 1013 // Double that indicates negative (for not matched forms) upload rate. | 1013 // Double that indicates negative (for not matched forms) upload rate. |
| 1014 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; | 1014 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; |
| 1015 | 1015 |
| 1016 // Boolean option set to true on the first run. Non-persistent. | 1016 // Boolean option set to true on the first run. Non-persistent. |
| 1017 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 1017 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
| 1018 | 1018 |
| 1019 // String that indicates the base url of the autofill service. |
| 1020 const char kAutofillServiceUrl[] = "autofill.service.url"; |
| 1021 |
| 1019 // Modifying bookmarks is completely disabled when this is set to false. | 1022 // Modifying bookmarks is completely disabled when this is set to false. |
| 1020 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 1023 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 1021 | 1024 |
| 1022 // Boolean that is true when the translate feature is enabled. | 1025 // Boolean that is true when the translate feature is enabled. |
| 1023 const char kEnableTranslate[] = "translate.enabled"; | 1026 const char kEnableTranslate[] = "translate.enabled"; |
| 1024 | 1027 |
| 1025 #if !defined(OS_ANDROID) | 1028 #if !defined(OS_ANDROID) |
| 1026 const char kPinnedTabs[] = "pinned_tabs"; | 1029 const char kPinnedTabs[] = "pinned_tabs"; |
| 1027 #endif | 1030 #endif |
| 1028 | 1031 |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2089 // Tracks the time of the last shown warning. Used to reset | 2092 // Tracks the time of the last shown warning. Used to reset |
| 2090 // |network_profile.warnings_left| after a silence period. | 2093 // |network_profile.warnings_left| after a silence period. |
| 2091 const char kNetworkProfileLastWarningTime[] = | 2094 const char kNetworkProfileLastWarningTime[] = |
| 2092 "network_profile.last_warning_time"; | 2095 "network_profile.last_warning_time"; |
| 2093 | 2096 |
| 2094 // 64-bit serialization of the time last policy usage statistics were collected | 2097 // 64-bit serialization of the time last policy usage statistics were collected |
| 2095 // by UMA_HISTOGRAM_ENUMERATION. | 2098 // by UMA_HISTOGRAM_ENUMERATION. |
| 2096 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2099 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2097 | 2100 |
| 2098 } // namespace prefs | 2101 } // namespace prefs |
| OLD | NEW |