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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 6260003: Clear plugin data together with cookies on shutdown. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browser_process_impl.cc
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 7a14807a7b720d825a7259736ca9503d0a51671a..b99ef637cc381de01d90c60a9d2fcc9c55178e6b 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -539,7 +539,7 @@ void BrowserProcessImpl::Observe(NotificationType type,
Profile* profile = ProfileManager::GetDefaultProfile();
if (profile) {
PrefService* prefs = profile->GetPrefs();
- if (prefs->GetBoolean(prefs::kClearPluginLSODataOnExit) &&
+ if (prefs->GetBoolean(prefs::kClearSiteDataOnExit) &&
local_state()->GetBoolean(prefs::kClearPluginLSODataEnabled)) {
plugin_data_remover_ = new PluginDataRemover();
plugin_data_remover_->StartRemoving(base::Time(), NULL);

Powered by Google App Engine
This is Rietveld 408576698