Index: chrome/renderer/render_widget.h |
=================================================================== |
--- chrome/renderer/render_widget.h (revision 69426) |
+++ chrome/renderer/render_widget.h (working copy) |
@@ -46,9 +46,11 @@ |
struct WebPopupMenuInfo; |
} |
-namespace webkit_glue { |
+namespace webkit { |
+namespace npapi { |
struct WebPluginGeometry; |
} |
+} |
// RenderWidget provides a communication bridge between a WebWidget and |
// a RenderWidgetHost, the latter of which lives in a different process. |
@@ -111,7 +113,7 @@ |
// Called when a plugin is moved. These events are queued up and sent with |
// the next paint or scroll message to the host. |
- void SchedulePluginMove(const webkit_glue::WebPluginGeometry& move); |
+ void SchedulePluginMove(const webkit::npapi::WebPluginGeometry& move); |
// Called when a plugin window has been destroyed, to make sure the currently |
// pending moves don't try to reference it. |
@@ -337,7 +339,7 @@ |
WebKit::WebPopupType popup_type_; |
// Holds all the needed plugin window moves for a scroll. |
- typedef std::vector<webkit_glue::WebPluginGeometry> WebPluginGeometryVector; |
+ typedef std::vector<webkit::npapi::WebPluginGeometry> WebPluginGeometryVector; |
WebPluginGeometryVector plugin_window_moves_; |
// A custom background for the widget. |