| Index: chrome/browser/renderer_host/render_widget_host_view_gtk.h
 | 
| diff --git a/chrome/browser/renderer_host/render_widget_host_view_gtk.h b/chrome/browser/renderer_host/render_widget_host_view_gtk.h
 | 
| index 2c47c01d7ecfe671d24e8f972e026078ccc32136..9f9b2e2ba43822b5cf3374ffc69676245fa8090c 100644
 | 
| --- a/chrome/browser/renderer_host/render_widget_host_view_gtk.h
 | 
| +++ b/chrome/browser/renderer_host/render_widget_host_view_gtk.h
 | 
| @@ -19,8 +19,8 @@
 | 
|  #include "chrome/browser/renderer_host/render_widget_host_view.h"
 | 
|  #include "gfx/native_widget_types.h"
 | 
|  #include "gfx/rect.h"
 | 
| +#include "webkit/glue/plugins/gtk_plugin_container_manager.h"
 | 
|  #include "webkit/glue/webcursor.h"
 | 
| -#include "webkit/plugins/npapi/gtk_plugin_container_manager.h"
 | 
|  
 | 
|  class RenderWidgetHost;
 | 
|  class GtkIMContextWrapper;
 | 
| @@ -61,7 +61,7 @@ class RenderWidgetHostViewGtk : public RenderWidgetHostView,
 | 
|    virtual void SetSize(const gfx::Size& size);
 | 
|    virtual gfx::NativeView GetNativeView();
 | 
|    virtual void MovePluginWindows(
 | 
| -      const std::vector<webkit::npapi::WebPluginGeometry>& moves);
 | 
| +      const std::vector<webkit_glue::WebPluginGeometry>& moves);
 | 
|    virtual void Focus();
 | 
|    virtual void Blur();
 | 
|    virtual bool HasFocus();
 | 
| @@ -208,7 +208,7 @@ class RenderWidgetHostViewGtk : public RenderWidgetHostView,
 | 
|    scoped_ptr<GtkKeyBindingsHandler> key_bindings_handler_;
 | 
|  
 | 
|    // Helper class that lets us allocate plugin containers and move them.
 | 
| -  webkit::npapi::GtkPluginContainerManager plugin_container_manager_;
 | 
| +  GtkPluginContainerManager plugin_container_manager_;
 | 
|  
 | 
|    // The size that we want the renderer to be.  We keep this in a separate
 | 
|    // variable because resizing in GTK+ is async.
 | 
| 
 |