| Index: chrome/plugin/chrome_plugin_host.cc
 | 
| diff --git a/chrome/plugin/chrome_plugin_host.cc b/chrome/plugin/chrome_plugin_host.cc
 | 
| index 8458e255467b718ddf6e6c38eff5630c3f3183dd..22b3da990c6e68077edfaa820c64b0e38336c767 100644
 | 
| --- a/chrome/plugin/chrome_plugin_host.cc
 | 
| +++ b/chrome/plugin/chrome_plugin_host.cc
 | 
| @@ -25,7 +25,7 @@
 | 
|  #include "net/base/upload_data.h"
 | 
|  #include "net/http/http_response_headers.h"
 | 
|  #include "webkit/appcache/appcache_interfaces.h"
 | 
| -#include "webkit/plugins/npapi/plugin_instance.h"
 | 
| +#include "webkit/glue/plugins/plugin_instance.h"
 | 
|  #include "webkit/glue/resource_loader_bridge.h"
 | 
|  #include "webkit/glue/resource_type.h"
 | 
|  #include "webkit/glue/webkit_glue.h"
 | 
| @@ -415,8 +415,8 @@ CPBrowsingContext STDCALL CPB_GetBrowsingContextFromNPP(NPP npp) {
 | 
|    if (!npp)
 | 
|      return CPERR_INVALID_PARAMETER;
 | 
|  
 | 
| -  webkit::npapi::PluginInstance* instance =
 | 
| -      static_cast<webkit::npapi::PluginInstance *>(npp->ndata);
 | 
| +  NPAPI::PluginInstance* instance =
 | 
| +      static_cast<NPAPI::PluginInstance *>(npp->ndata);
 | 
|    WebPluginProxy* webplugin =
 | 
|        static_cast<WebPluginProxy*>(instance->webplugin());
 | 
|  
 | 
| 
 |