OLD | NEW |
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/browser/plugin_data_remover.h" | 5 #include "chrome/browser/plugin_data_remover.h" |
6 | 6 |
| 7 #include "base/command_line.h" |
7 #include "base/message_loop_proxy.h" | 8 #include "base/message_loop_proxy.h" |
8 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
9 #include "base/version.h" | 10 #include "base/version.h" |
10 #include "chrome/browser/browser_thread.h" | 11 #include "chrome/browser/browser_thread.h" |
11 #include "chrome/browser/plugin_service.h" | 12 #include "chrome/browser/plugin_service.h" |
| 13 #include "chrome/common/chrome_switches.h" |
12 #include "chrome/common/plugin_messages.h" | 14 #include "chrome/common/plugin_messages.h" |
13 #include "webkit/plugins/npapi/plugin_group.h" | 15 #include "webkit/plugins/npapi/plugin_group.h" |
14 #include "webkit/plugins/npapi/plugin_list.h" | 16 #include "webkit/plugins/npapi/plugin_list.h" |
15 | 17 |
16 #if defined(OS_POSIX) | 18 #if defined(OS_POSIX) |
17 #include "ipc/ipc_channel_posix.h" | 19 #include "ipc/ipc_channel_posix.h" |
18 #endif | 20 #endif |
19 | 21 |
20 namespace { | 22 namespace { |
21 const char* kFlashMimeType = "application/x-shockwave-flash"; | 23 const char* kFlashMimeType = "application/x-shockwave-flash"; |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); | 151 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
150 bool allow_wildcard = false; | 152 bool allow_wildcard = false; |
151 webkit::npapi::WebPluginInfo plugin; | 153 webkit::npapi::WebPluginInfo plugin; |
152 std::string mime_type; | 154 std::string mime_type; |
153 if (!webkit::npapi::PluginList::Singleton()->GetPluginInfo( | 155 if (!webkit::npapi::PluginList::Singleton()->GetPluginInfo( |
154 GURL(), kFlashMimeType, allow_wildcard, &plugin, &mime_type)) { | 156 GURL(), kFlashMimeType, allow_wildcard, &plugin, &mime_type)) { |
155 return false; | 157 return false; |
156 } | 158 } |
157 scoped_ptr<Version> version( | 159 scoped_ptr<Version> version( |
158 webkit::npapi::PluginGroup::CreateVersionFromString(plugin.version)); | 160 webkit::npapi::PluginGroup::CreateVersionFromString(plugin.version)); |
159 scoped_ptr<Version> min_version( | 161 scoped_ptr<Version> min_version(Version::GetVersionFromString( |
160 Version::GetVersionFromString(kMinFlashVersion)); | 162 CommandLine::ForCurrentProcess()->GetSwitchValueASCII( |
| 163 switches::kMinClearSiteDataFlashVersion))); |
| 164 if (!min_version.get()) |
| 165 min_version.reset(Version::GetVersionFromString(kMinFlashVersion)); |
161 return plugin.enabled && | 166 return plugin.enabled && |
162 version.get() && | 167 version.get() && |
163 min_version->CompareTo(*version) == -1; | 168 min_version->CompareTo(*version) == -1; |
164 } | 169 } |
OLD | NEW |