Index: content/browser/plugin_service_impl.cc |
=================================================================== |
--- content/browser/plugin_service_impl.cc (revision 213578) |
+++ content/browser/plugin_service_impl.cc (working copy) |
@@ -19,7 +19,7 @@ |
#include "content/browser/ppapi_plugin_process_host.h" |
#include "content/browser/renderer_host/render_process_host_impl.h" |
#include "content/browser/renderer_host/render_view_host_impl.h" |
-#include "content/common/pepper_plugin_registry.h" |
+#include "content/common/pepper_plugin_list.h" |
#include "content/common/plugin_list.h" |
#include "content/common/view_messages.h" |
#include "content/public/browser/browser_thread.h" |
@@ -650,8 +650,7 @@ |
} |
void PluginServiceImpl::RegisterPepperPlugins() { |
- // TODO(abarth): It seems like the PepperPluginRegistry should do this work. |
- PepperPluginRegistry::ComputeList(&ppapi_plugins_); |
+ ComputePepperPluginList(&ppapi_plugins_); |
for (size_t i = 0; i < ppapi_plugins_.size(); ++i) { |
RegisterInternalPlugin(ppapi_plugins_[i].ToWebPluginInfo(), true); |
} |