Fix ClearSiteData for Pepper Flash.
1) Don't pass the path as the site. We don't support site-specific clearing,
so just pass an empty string.
2) Append the plugin's name to the profile-specific Pepper data directory.
Review URL: http://codereview.chromium.org/10202002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133616 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc
index fd62447..42079cf 100644
--- a/content/browser/plugin_data_remover_impl.cc
+++ b/content/browser/plugin_data_remover_impl.cc
@@ -109,6 +109,7 @@
PepperPluginInfo* pepper_info =
plugin_service->GetRegisteredPpapiPluginInfo(plugin_path);
if (pepper_info) {
+ plugin_name_ = pepper_info->name;
// Use the broker since we run this function outside the sandbox.
plugin_service->OpenChannelToPpapiBroker(plugin_path, this);
} else {
@@ -222,15 +223,19 @@
IPC::Message* msg;
if (is_ppapi) {
- // Pass the path as 8-bit on all platforms.
FilePath profile_path =
PepperFileMessageFilter::GetDataDirName(browser_context_path_);
+ // TODO(vtl): This "duplicates" logic in webkit/plugins/ppapi/file_path.cc
+ // (which prepends the plugin name to the relative part of the path
+ // instead, with the absolute, profile-dependent part being enforced by
+ // the browser).
#if defined(OS_WIN)
- std::string path_utf8 = UTF16ToUTF8(profile_path.value());
+ FilePath plugin_data_path =
+ profile_path.Append(FilePath(UTF8ToUTF16(plugin_name_)));
#else
- const std::string& path_utf8 = profile_path.value();
+ FilePath plugin_data_path = profile_path.Append(FilePath(plugin_name_));
#endif
- msg = new PpapiMsg_ClearSiteData(profile_path, path_utf8,
+ msg = new PpapiMsg_ClearSiteData(plugin_data_path, std::string(),
kClearAllData, max_age);
} else {
msg = new PluginMsg_ClearSiteData(std::string(), kClearAllData, max_age);
@@ -274,6 +279,9 @@
// The resource context for the profile. Use only on the I/O thread.
ResourceContext* resource_context_;
+ // The name of the plugin. Use only on the I/O thread.
+ std::string plugin_name_;
+
// The channel is NULL until we have opened a connection to the plug-in
// process.
scoped_ptr<IPC::Channel> channel_;