1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Defines a list of the preferences that the
// PreferencesChangeProcessor should process changes for.
#ifndef CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_
#define CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_
#include "chrome/browser/translate/translate_prefs.h"
#include "chrome/common/pref_names.h"
namespace browser_sync {
static const wchar_t* kSynchronizedPreferences[] = {
// Options dialog: Basics tab.
prefs::kRestoreOnStartup,
prefs::kURLsToRestoreOnStartup,
prefs::kShowBookmarkBar,
prefs::kHomePageIsNewTabPage,
prefs::kHomePage,
prefs::kShowHomeButton,
prefs::kShowPageOptionsButtons,
// Default Search is not synced, needs a new data type. See
// http://crbug.com/40482
// Options dialog: Personal Stuff tab.
prefs::kPasswordManagerEnabled,
prefs::kAutoFillEnabled,
prefs::kAutoFillInfoBarShown,
prefs::kUseCustomChromeFrame,
// Options dialog: Under the hood -> Content Settings -> Cookies.
// Cookie settings and exceptions not working
prefs::kBlockThirdPartyCookies,
prefs::kClearSiteDataOnExit,
// Options dialog: Under the hood -> Content Settings ->
// Images, JavaScript, Plug-ins, Pop-ups.
prefs::kDefaultContentSettings,
prefs::kContentSettingsPatterns,
// Options dialog: Under the hood -> Content Settings -> Location.
// Exceptions not working (dialog not working either).
prefs::kGeolocationContentSettings,
prefs::kGeolocationDefaultContentSetting,
// Options dialog: Under the hood -> Clear browsing data.
// All working but no live update.
prefs::kDeleteBrowsingHistory,
prefs::kDeleteDownloadHistory,
prefs::kDeleteCache,
prefs::kDeleteCookies,
prefs::kDeletePasswords,
prefs::kDeleteFormData,
prefs::kDeleteTimePeriod,
// Options dialog: Under the hood -> Change proxy settings.
// Uses native OS dialog, not synced.
// Options dialog: Under the hood -> Change font and language settings.
// Serif, San Serif, Fixed font settings not synced.
prefs::kDefaultCharset,
prefs::kAcceptLanguages,
prefs::kEnableSpellCheck,
// Spell checker language not synced.
prefs::kApplicationLocale,
// Options dialog: Under the hood.
prefs::kAlternateErrorPagesEnabled,
prefs::kSearchSuggestEnabled,
prefs::kDnsPrefetchingEnabled,
prefs::kSafeBrowsingEnabled,
prefs::kEnableTranslate,
// Download directory not synced.
// Clear auto-opening settings not synced.
prefs::kPromptForDownload,
// Wrench menu -> Extensions.
prefs::kExtensionsUIDeveloperMode, // no live update
// Document menu -> Zoom.
prefs::kPerHostZoomLevels,
// Document menu -> Encoding -> Auto Detect.
prefs::kWebKitUsesUniversalDetector,
// Autofill dialog.
prefs::kAutoFillAuxiliaryProfilesEnabled,
prefs::kAutoFillDefaultProfile,
// Translate preferences.
TranslatePrefs::kPrefTranslateLanguageBlacklist,
TranslatePrefs::kPrefTranslateSiteBlacklist,
TranslatePrefs::kPrefTranslateWhitelists,
// Desktop notification permissions.
prefs::kDesktopNotificationAllowedOrigins,
prefs::kDesktopNotificationDeniedOrigins,
#if defined(OS_CHROMEOS)
// IME prefs
prefs::kLanguageHangulKeyboard,
prefs::kLanguagePinyinAutoCommit,
prefs::kLanguagePinyinCommaPeriodPage,
prefs::kLanguagePinyinCorrectPinyin,
prefs::kLanguagePinyinDoublePinyin,
prefs::kLanguagePinyinFuzzyPinyin,
prefs::kLanguagePinyinInitChinese,
prefs::kLanguagePinyinInitFull,
prefs::kLanguagePinyinInitFullPunct,
prefs::kLanguagePinyinInitSimplifiedChinese,
prefs::kLanguagePinyinMinusEqualPage,
prefs::kLanguagePinyinShiftSelectCandidate,
prefs::kLanguagePinyinTradCandidate,
prefs::kLanguagePreloadEngines,
// We don't sync the following IME prefs since they are not user-configurable
// (yet):
// prefs::kLanguageHotkeyNextEngineInMenu,
// prefs::kLanguageHotkeyPreviousEngine,
// prefs::kLanguagePinyinDoublePinyinSchema,
// prefs::kLanguagePinyinLookupTablePageSize,
#endif
};
} // namespace browser_sync
#endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_
|