Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2083)

Unified Diff: chrome/common/pepper_plugin_registry.cc

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698