| Index: chrome/common/default_plugin.cc
|
| ===================================================================
|
| --- chrome/common/default_plugin.cc (revision 69765)
|
| +++ chrome/common/default_plugin.cc (working copy)
|
| @@ -5,13 +5,13 @@
|
| #include "chrome/common/default_plugin.h"
|
|
|
| #include "chrome/default_plugin/plugin_main.h"
|
| -#include "webkit/plugins/npapi/plugin_list.h"
|
| +#include "webkit/glue/plugins/plugin_list.h"
|
|
|
| namespace chrome {
|
|
|
| void RegisterInternalDefaultPlugin() {
|
| - const webkit::npapi::PluginVersionInfo default_plugin = {
|
| - FilePath(webkit::npapi::kDefaultPluginLibraryName),
|
| + const NPAPI::PluginVersionInfo default_plugin = {
|
| + FilePath(kDefaultPluginLibraryName),
|
| L"Default Plug-in",
|
| L"Provides functionality for installing third-party plug-ins",
|
| L"1",
|
| @@ -27,8 +27,7 @@
|
| }
|
| };
|
|
|
| - webkit::npapi::PluginList::Singleton()->RegisterInternalPlugin(
|
| - default_plugin);
|
| + NPAPI::PluginList::Singleton()->RegisterInternalPlugin(default_plugin);
|
| }
|
|
|
| } // namespace chrome
|
|
|
| Property changes on: chrome/common/default_plugin.cc
|
| ___________________________________________________________________
|
| Deleted: svn:eol-style
|
| - LF
|
|
|
|
|