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

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

Issue 6122008: Also delete plugin data when the cookies checkbox in the clear browsing data dialog is checked. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 11 months 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/resources/options/clear_browser_data.js ('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,
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/clear_browser_data.js ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698