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

Unified Diff: chrome/browser/plugin_data_remover.cc

Issue 6242002: Add a command line flag to specify the minimum flash version implementing the NPP_ClearSiteData API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fall back to default version for invalid switch value 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
« no previous file with comments | « no previous file | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_data_remover.cc
diff --git a/chrome/browser/plugin_data_remover.cc b/chrome/browser/plugin_data_remover.cc
index 4e6ac7f3c71bf5ca4a9ba8d6be6bad0c2e75bd59..a171ac77cc545d73b7b7b196e4c3596a34dfe0b3 100644
--- a/chrome/browser/plugin_data_remover.cc
+++ b/chrome/browser/plugin_data_remover.cc
@@ -4,11 +4,13 @@
#include "chrome/browser/plugin_data_remover.h"
+#include "base/command_line.h"
#include "base/message_loop_proxy.h"
#include "base/metrics/histogram.h"
#include "base/version.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/plugin_service.h"
+#include "chrome/common/chrome_switches.h"
#include "chrome/common/plugin_messages.h"
#include "webkit/plugins/npapi/plugin_group.h"
#include "webkit/plugins/npapi/plugin_list.h"
@@ -156,8 +158,11 @@ bool PluginDataRemover::IsSupported() {
}
scoped_ptr<Version> version(
webkit::npapi::PluginGroup::CreateVersionFromString(plugin.version));
- scoped_ptr<Version> min_version(
- Version::GetVersionFromString(kMinFlashVersion));
+ scoped_ptr<Version> min_version(Version::GetVersionFromString(
+ CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
+ switches::kMinClearSiteDataFlashVersion)));
+ if (!min_version.get())
+ min_version.reset(Version::GetVersionFromString(kMinFlashVersion));
return plugin.enabled &&
version.get() &&
min_version->CompareTo(*version) == -1;
« no previous file with comments | « no previous file | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698