| Index: chrome/browser/plugin_installer.cc
|
| ===================================================================
|
| --- chrome/browser/plugin_installer.cc (revision 69765)
|
| +++ chrome/browser/plugin_installer.cc (working copy)
|
| @@ -12,7 +12,7 @@
|
| #include "grit/generated_resources.h"
|
| #include "grit/locale_settings.h"
|
| #include "grit/theme_resources.h"
|
| -#include "webkit/plugins/npapi/default_plugin_shared.h"
|
| +#include "webkit/glue/plugins/default_plugin_shared.h"
|
|
|
| // The URL for the "Problems installing" page for the Plugins infobar.
|
| static const char kLearnMorePluginInstallerUrl[] =
|
| @@ -30,11 +30,11 @@
|
|
|
| void PluginInstaller::OnMissingPluginStatus(int status) {
|
| switch (status) {
|
| - case webkit::npapi::default_plugin::MISSING_PLUGIN_AVAILABLE: {
|
| + case default_plugin::MISSING_PLUGIN_AVAILABLE: {
|
| tab_contents_->AddInfoBar(this);
|
| break;
|
| }
|
| - case webkit::npapi::default_plugin::MISSING_PLUGIN_USER_STARTED_DOWNLOAD: {
|
| + case default_plugin::MISSING_PLUGIN_USER_STARTED_DOWNLOAD: {
|
| // Hide the InfoBar if user already started download/install of the
|
| // missing plugin.
|
| tab_contents_->RemoveInfoBar(this);
|
|
|