summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-16 15:42:34 +0000
committerbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-16 15:42:34 +0000
commita32a525720bb5e342e5f6796ca88f97ff09356ed (patch)
tree15251146de19d04f4af492f86611491b591dfb55
parent608c5713560ff4cf87b39faf01bb7cf15dd34490 (diff)
downloadchromium_src-a32a525720bb5e342e5f6796ca88f97ff09356ed.zip
chromium_src-a32a525720bb5e342e5f6796ca88f97ff09356ed.tar.gz
chromium_src-a32a525720bb5e342e5f6796ca88f97ff09356ed.tar.bz2
Update minimum Flash version implementing NPP_ClearSiteData.
BUG=58235 TEST=none Review URL: http://codereview.chromium.org/6480115 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75120 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/plugin_data_remover.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/plugin_data_remover.cc b/chrome/browser/plugin_data_remover.cc
index a32e12b..5dd9750 100644
--- a/chrome/browser/plugin_data_remover.cc
+++ b/chrome/browser/plugin_data_remover.cc
@@ -21,9 +21,8 @@
namespace {
const char* kFlashMimeType = "application/x-shockwave-flash";
-// TODO(bauerb): Update minimum required Flash version as soon as there is one
-// implementing the API.
-const char* kMinFlashVersion = "100";
+// The minimum Flash Player version that implements NPP_ClearSiteData.
+const char* kMinFlashVersion = "10.3";
const int64 kRemovalTimeoutMs = 10000;
const uint64 kClearAllData = 0;
} // namespace