| Index: content/browser/plugin_process_host.cc
|
| diff --git a/content/browser/plugin_process_host.cc b/content/browser/plugin_process_host.cc
|
| index 2c10b09889b8ebd0461335627bd128e2e80c9fd6..42974f9a44e81ff4b0e014c443f92912a2b308a7 100644
|
| --- a/content/browser/plugin_process_host.cc
|
| +++ b/content/browser/plugin_process_host.cc
|
| @@ -263,10 +263,11 @@ bool PluginProcessHost::Init(const WebPluginInfo& info) {
|
| base::Bind(&PluginProcessHost::GetContexts,
|
| base::Unretained(this)));
|
|
|
| - // TODO(jam): right now we're passing NULL for appcache, blob storage, and
|
| - // file system. If NPAPI plugins actually use this, we'll have to plumb them.
|
| + // TODO(jam): right now we're passing NULL for appcache, blob storage, file
|
| + // system and host zoom level context. If NPAPI plugins actually use this,
|
| + // we'll have to plumb them.
|
| ResourceMessageFilter* resource_message_filter = new ResourceMessageFilter(
|
| - process_->GetData().id, PROCESS_TYPE_PLUGIN, NULL, NULL, NULL, NULL,
|
| + process_->GetData().id, PROCESS_TYPE_PLUGIN, NULL, NULL, NULL, NULL, NULL,
|
| get_contexts_callback);
|
| process_->AddFilter(resource_message_filter);
|
| return true;
|
|
|