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 | 10 |
(...skipping 27 matching lines...) Expand all Loading... |
38 // Options dialog: Under the hood -> Content Settings -> | 38 // Options dialog: Under the hood -> Content Settings -> |
39 // Images, JavaScript, Plug-ins, Pop-ups. | 39 // Images, JavaScript, Plug-ins, Pop-ups. |
40 prefs::kDefaultContentSettings, | 40 prefs::kDefaultContentSettings, |
41 prefs::kContentSettingsPatterns, | 41 prefs::kContentSettingsPatterns, |
42 | 42 |
43 // Options dialog: Under the hood -> Content Settings -> Location. | 43 // Options dialog: Under the hood -> Content Settings -> Location. |
44 // Exceptions not working (dialog not working either). | 44 // Exceptions not working (dialog not working either). |
45 prefs::kGeolocationContentSettings, | 45 prefs::kGeolocationContentSettings, |
46 prefs::kGeolocationDefaultContentSetting, | 46 prefs::kGeolocationDefaultContentSetting, |
47 | 47 |
| 48 // Options dialog: under the hood -> Content Settings -> Notifications. |
| 49 prefs::kDesktopNotificationDefaultContentSetting, |
| 50 |
48 // Options dialog: Under the hood -> Clear browsing data. | 51 // Options dialog: Under the hood -> Clear browsing data. |
49 // All working but no live update. | 52 // All working but no live update. |
50 prefs::kDeleteBrowsingHistory, | 53 prefs::kDeleteBrowsingHistory, |
51 prefs::kDeleteDownloadHistory, | 54 prefs::kDeleteDownloadHistory, |
52 prefs::kDeleteCache, | 55 prefs::kDeleteCache, |
53 prefs::kDeleteCookies, | 56 prefs::kDeleteCookies, |
54 prefs::kDeletePasswords, | 57 prefs::kDeletePasswords, |
55 prefs::kDeleteFormData, | 58 prefs::kDeleteFormData, |
56 prefs::kDeleteTimePeriod, | 59 prefs::kDeleteTimePeriod, |
57 | 60 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 // prefs::kLanguagePinyinDoublePinyinSchema, | 150 // prefs::kLanguagePinyinDoublePinyinSchema, |
148 // prefs::kLanguagePinyinLookupTablePageSize, | 151 // prefs::kLanguagePinyinLookupTablePageSize, |
149 // | 152 // |
150 // We don't sync prefs::kLanguageCurrentInputMethod and PreviousInputMethod. | 153 // We don't sync prefs::kLanguageCurrentInputMethod and PreviousInputMethod. |
151 #endif | 154 #endif |
152 }; | 155 }; |
153 | 156 |
154 } // namespace browser_sync | 157 } // namespace browser_sync |
155 | 158 |
156 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 159 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
OLD | NEW |