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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 prefs::kExtensionsUIDeveloperMode, // no live update | 88 prefs::kExtensionsUIDeveloperMode, // no live update |
89 | 89 |
90 // Document menu -> Zoom. | 90 // Document menu -> Zoom. |
91 // prefs::kPerHostZoomLevels creates bad UX when synced, see | 91 // prefs::kPerHostZoomLevels creates bad UX when synced, see |
92 // http://crbug.com/47359. | 92 // http://crbug.com/47359. |
93 | 93 |
94 // Document menu -> Encoding -> Auto Detect. | 94 // Document menu -> Encoding -> Auto Detect. |
95 prefs::kWebKitUsesUniversalDetector, | 95 prefs::kWebKitUsesUniversalDetector, |
96 | 96 |
97 // Autofill dialog. | 97 // Autofill dialog. |
| 98 #if defined(OS_MACOSX) |
98 prefs::kAutoFillAuxiliaryProfilesEnabled, | 99 prefs::kAutoFillAuxiliaryProfilesEnabled, |
| 100 #endif |
99 | 101 |
100 // Translate preferences. | 102 // Translate preferences. |
101 TranslatePrefs::kPrefTranslateLanguageBlacklist, | 103 TranslatePrefs::kPrefTranslateLanguageBlacklist, |
102 TranslatePrefs::kPrefTranslateSiteBlacklist, | 104 TranslatePrefs::kPrefTranslateSiteBlacklist, |
103 TranslatePrefs::kPrefTranslateWhitelists, | 105 TranslatePrefs::kPrefTranslateWhitelists, |
104 TranslatePrefs::kPrefTranslateDeniedCount, | 106 TranslatePrefs::kPrefTranslateDeniedCount, |
105 TranslatePrefs::kPrefTranslateAcceptedCount, | 107 TranslatePrefs::kPrefTranslateAcceptedCount, |
106 | 108 |
107 // Desktop notification permissions. | 109 // Desktop notification permissions. |
108 prefs::kDesktopNotificationAllowedOrigins, | 110 prefs::kDesktopNotificationAllowedOrigins, |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 // prefs::kLanguagePinyinDoublePinyinSchema, | 157 // prefs::kLanguagePinyinDoublePinyinSchema, |
156 // prefs::kLanguagePinyinLookupTablePageSize, | 158 // prefs::kLanguagePinyinLookupTablePageSize, |
157 // | 159 // |
158 // We don't sync prefs::kLanguageCurrentInputMethod and PreviousInputMethod. | 160 // We don't sync prefs::kLanguageCurrentInputMethod and PreviousInputMethod. |
159 #endif | 161 #endif |
160 }; | 162 }; |
161 | 163 |
162 } // namespace browser_sync | 164 } // namespace browser_sync |
163 | 165 |
164 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 166 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
OLD | NEW |