Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Side by Side Diff: chrome/browser/sync/glue/synchronized_preferences.h

Issue 5278001: Add a preference to clear Flash LSO data in the Clear Browsing Data dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/plugin_service.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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,
59 prefs::kDeleteFormData, 60 prefs::kDeleteFormData,
60 prefs::kDeleteTimePeriod, 61 prefs::kDeleteTimePeriod,
61 62
62 // Options dialog: Under the hood -> Change proxy settings. 63 // Options dialog: Under the hood -> Change proxy settings.
63 // Uses native OS dialog, not synced. 64 // Uses native OS dialog, not synced.
64 65
65 // Options dialog: Under the hood -> Change font and language settings. 66 // Options dialog: Under the hood -> Change font and language settings.
66 // Serif, San Serif, Fixed font settings not synced. 67 // Serif, San Serif, Fixed font settings not synced.
67 prefs::kDefaultCharset, 68 prefs::kDefaultCharset,
68 // There is no dialog to modify the kAcceptLanguages list on OSX, so 69 // There is no dialog to modify the kAcceptLanguages list on OSX, so
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 186
186 // Whether to show mobile plan notifications. 187 // Whether to show mobile plan notifications.
187 // Settings -> Internet -> Mobile plan details 188 // Settings -> Internet -> Mobile plan details
188 prefs::kShowPlanNotifications, 189 prefs::kShowPlanNotifications,
189 #endif 190 #endif
190 }; 191 };
191 192
192 } // namespace browser_sync 193 } // namespace browser_sync
193 194
194 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ 195 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_
OLDNEW
« no previous file with comments | « chrome/browser/plugin_service.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698