| Index: content/browser/ppapi_plugin_process_host.cc
|
| diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc
|
| index 093a08bef8064396ef6265a0662fed3ad01fa482..4a7b47a1df9ecf597808343f089b27745af9d55e 100644
|
| --- a/content/browser/ppapi_plugin_process_host.cc
|
| +++ b/content/browser/ppapi_plugin_process_host.cc
|
| @@ -219,7 +219,8 @@ PpapiPluginProcessHost::PpapiPluginProcessHost(
|
|
|
| host_impl_.reset(new BrowserPpapiHostImpl(this, permissions_, info.name,
|
| info.path, profile_data_directory,
|
| - false));
|
| + false,
|
| + filter_));
|
|
|
| process_->GetHost()->AddFilter(filter_.get());
|
| process_->GetHost()->AddFilter(host_impl_->message_filter().get());
|
| @@ -242,7 +243,8 @@ PpapiPluginProcessHost::PpapiPluginProcessHost()
|
| host_impl_.reset(new BrowserPpapiHostImpl(this, permissions,
|
| std::string(), base::FilePath(),
|
| base::FilePath(),
|
| - false));
|
| + false,
|
| + NULL));
|
| }
|
|
|
| bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) {
|
|
|