| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Defines a list of the preferences that the | 5 // Defines a list of the preferences that the |
| 6 // PreferencesChangeProcessor should process changes for. | 6 // PreferencesChangeProcessor should process changes for. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
| 9 #define CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 9 #define CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
| 10 #pragma once | 10 #pragma once |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 // Options dialog: under the hood -> Content Settings -> Notifications. | 49 // Options dialog: under the hood -> Content Settings -> Notifications. |
| 50 prefs::kDesktopNotificationDefaultContentSetting, | 50 prefs::kDesktopNotificationDefaultContentSetting, |
| 51 | 51 |
| 52 // Options dialog: Under the hood -> Clear browsing data. | 52 // Options dialog: Under the hood -> Clear browsing data. |
| 53 // All working but no live update. | 53 // All working but no live update. |
| 54 prefs::kDeleteBrowsingHistory, | 54 prefs::kDeleteBrowsingHistory, |
| 55 prefs::kDeleteDownloadHistory, | 55 prefs::kDeleteDownloadHistory, |
| 56 prefs::kDeleteCache, | 56 prefs::kDeleteCache, |
| 57 prefs::kDeleteCookies, | 57 prefs::kDeleteCookies, |
| 58 prefs::kDeletePasswords, | 58 prefs::kDeletePasswords, |
| 59 prefs::kDeleteLSOData, | |
| 60 prefs::kDeleteFormData, | 59 prefs::kDeleteFormData, |
| 61 prefs::kDeleteTimePeriod, | 60 prefs::kDeleteTimePeriod, |
| 62 | 61 |
| 63 // Options dialog: Under the hood -> Change proxy settings. | 62 // Options dialog: Under the hood -> Change proxy settings. |
| 64 // Uses native OS dialog, not synced. | 63 // Uses native OS dialog, not synced. |
| 65 | 64 |
| 66 // Options dialog: Under the hood -> Change font and language settings. | 65 // Options dialog: Under the hood -> Change font and language settings. |
| 67 // Serif, San Serif, Fixed font settings not synced. | 66 // Serif, San Serif, Fixed font settings not synced. |
| 68 prefs::kDefaultCharset, | 67 prefs::kDefaultCharset, |
| 69 // There is no dialog to modify the kAcceptLanguages list on OSX, so | 68 // There is no dialog to modify the kAcceptLanguages list on OSX, so |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 185 |
| 187 // Whether to show mobile plan notifications. | 186 // Whether to show mobile plan notifications. |
| 188 // Settings -> Internet -> Mobile plan details | 187 // Settings -> Internet -> Mobile plan details |
| 189 prefs::kShowPlanNotifications, | 188 prefs::kShowPlanNotifications, |
| 190 #endif | 189 #endif |
| 191 }; | 190 }; |
| 192 | 191 |
| 193 } // namespace browser_sync | 192 } // namespace browser_sync |
| 194 | 193 |
| 195 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 194 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
| OLD | NEW |