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

Side by Side Diff: chrome/common/pref_names.cc

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/common/pref_names.h ('k') | no next file » | 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 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 // separated with comma punctuation mark. 460 // separated with comma punctuation mark.
461 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; 461 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings";
462 462
463 // Clear Browsing Data dialog preferences. 463 // Clear Browsing Data dialog preferences.
464 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; 464 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history";
465 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; 465 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history";
466 const char kDeleteCache[] = "browser.clear_data.cache"; 466 const char kDeleteCache[] = "browser.clear_data.cache";
467 const char kDeleteCookies[] = "browser.clear_data.cookies"; 467 const char kDeleteCookies[] = "browser.clear_data.cookies";
468 const char kDeletePasswords[] = "browser.clear_data.passwords"; 468 const char kDeletePasswords[] = "browser.clear_data.passwords";
469 const char kDeleteFormData[] = "browser.clear_data.form_data"; 469 const char kDeleteFormData[] = "browser.clear_data.form_data";
470 const char kDeleteLSOData[] = "browser.clear_data.lso_data";
471 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; 470 const char kDeleteTimePeriod[] = "browser.clear_data.time_period";
472 471
473 // Whether there is a Flash version installed that supports clearing LSO data. 472 // Whether there is a Flash version installed that supports clearing LSO data.
474 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 473 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
475 474
476 // Boolean pref to define the default values for using spellchecker. 475 // Boolean pref to define the default values for using spellchecker.
477 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; 476 const char kEnableSpellCheck[] = "browser.enable_spellchecking";
478 477
479 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). 478 // List of names of the enabled labs experiments (see chrome/browser/labs.cc).
480 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; 479 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments";
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 const char kManagedDefaultPluginsSetting[] = 1162 const char kManagedDefaultPluginsSetting[] =
1164 "profile.managed_default_content_settings.plugins"; 1163 "profile.managed_default_content_settings.plugins";
1165 const char kManagedDefaultPopupsSetting[] = 1164 const char kManagedDefaultPopupsSetting[] =
1166 "profile.managed_default_content_settings.popups"; 1165 "profile.managed_default_content_settings.popups";
1167 1166
1168 // Dictionary for storing the set of known background pages (keys are extension 1167 // Dictionary for storing the set of known background pages (keys are extension
1169 // IDs of background page owners, value is a boolean that is true if the user 1168 // IDs of background page owners, value is a boolean that is true if the user
1170 // needs to acknowledge this page. 1169 // needs to acknowledge this page.
1171 const char kKnownBackgroundPages[] = "background_pages.known"; 1170 const char kKnownBackgroundPages[] = "background_pages.known";
1172 } // namespace prefs 1171 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698