diff options
author | raymes@google.com <raymes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-21 02:47:42 +0000 |
---|---|---|
committer | raymes@google.com <raymes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-21 02:47:42 +0000 |
commit | 49511a7d75a9952eb4a982716089b56c782f3cec (patch) | |
tree | fa240d393e59ccb26b4b95b16570f4c568cb3cc0 /content/browser/plugin_data_remover_impl.cc | |
parent | c68e3e5a9ee8ff4bcd702c4c10a4eac0369a2431 (diff) | |
download | chromium_src-49511a7d75a9952eb4a982716089b56c782f3cec.zip chromium_src-49511a7d75a9952eb4a982716089b56c782f3cec.tar.gz chromium_src-49511a7d75a9952eb4a982716089b56c782f3cec.tar.bz2 |
Refactor PepperFlashFileHost and PepperBrokerHost to use MessageFilterHost.
This refactors PepperFlashFileHost and PepperBrokerHost to use MessageFilterHost. This removes the empty Host classes and moves the interface definition of the MessageFilter classes into the header files. This hopefully makes the code a lot cleaner/clearer.
TBR=brettw@chromium.org for gypi changes and trivial plugin_data_remover_impl changes.
Review URL: https://codereview.chromium.org/11617005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174323 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_data_remover_impl.cc')
-rw-r--r-- | content/browser/plugin_data_remover_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc index 731f1e6..983f84f 100644 --- a/content/browser/plugin_data_remover_impl.cc +++ b/content/browser/plugin_data_remover_impl.cc @@ -14,7 +14,7 @@ #include "base/version.h" #include "content/browser/plugin_process_host.h" #include "content/browser/plugin_service_impl.h" -#include "content/browser/renderer_host/pepper/pepper_flash_file_host.h" +#include "content/browser/renderer_host/pepper/pepper_flash_file_message_filter.h" #include "content/common/child_process_host_impl.h" #include "content/common/plugin_messages.h" #include "content/public/browser/browser_context.h" @@ -202,7 +202,7 @@ class PluginDataRemoverImpl::Context IPC::Message* CreatePpapiClearSiteDataMsg(uint64 max_age) { FilePath profile_path = - PepperFlashFileHost::GetDataDirName(browser_context_path_); + PepperFlashFileMessageFilter::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 |