| Index: chrome/common/pepper_plugin_registry.cc
|
| ===================================================================
|
| --- chrome/common/pepper_plugin_registry.cc (revision 69282)
|
| +++ chrome/common/pepper_plugin_registry.cc (working copy)
|
| @@ -191,7 +191,7 @@
|
| return false;
|
| }
|
|
|
| -pepper::PluginModule* PepperPluginRegistry::GetModule(
|
| +webkit::plugins::ppapi::PluginModule* PepperPluginRegistry::GetModule(
|
| const FilePath& path) const {
|
| ModuleMap::const_iterator it = modules_.find(path);
|
| if (it == modules_.end())
|
| @@ -211,7 +211,7 @@
|
| it != internal_plugin_info.end();
|
| ++it) {
|
| const FilePath& path = it->path;
|
| - ModuleHandle module(new pepper::PluginModule);
|
| + ModuleHandle module(new webkit::plugins::ppapi::PluginModule);
|
| if (!module->InitAsInternalPlugin(it->entry_points)) {
|
| DLOG(ERROR) << "Failed to load pepper module: " << path.value();
|
| continue;
|
| @@ -230,7 +230,7 @@
|
| continue; // Only preload in-process plugins.
|
|
|
| const FilePath& path = plugins[i].path;
|
| - ModuleHandle module(new pepper::PluginModule);
|
| + ModuleHandle module(new webkit::plugins::ppapi::PluginModule);
|
| if (!module->InitAsLibrary(path)) {
|
| DLOG(ERROR) << "Failed to load pepper module: " << path.value();
|
| continue;
|
|
|