| Index: content/renderer/render_widget.h
 | 
| diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h
 | 
| index 5890cd88af983dc6f7230b5f26a698ee87d26c5d..0acb90128a2f7ae9a5f5c61e8f59a569b13fac20 100644
 | 
| --- a/content/renderer/render_widget.h
 | 
| +++ b/content/renderer/render_widget.h
 | 
| @@ -93,7 +93,6 @@ class ResizingModeSelector;
 | 
|  struct ContextMenuParams;
 | 
|  struct DidOverscrollParams;
 | 
|  struct ResizeParams;
 | 
| -struct WebPluginGeometry;
 | 
|  
 | 
|  // RenderWidget provides a communication bridge between a WebWidget and
 | 
|  // a RenderWidgetHost, the latter of which lives in a different process.
 | 
| @@ -286,14 +285,6 @@ class CONTENT_EXPORT RenderWidget
 | 
|    // Stop compositing.
 | 
|    void WillCloseLayerTreeView();
 | 
|  
 | 
| -  // 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 WebPluginGeometry& move);
 | 
| -
 | 
| -  // Called when a plugin window has been destroyed, to make sure the currently
 | 
| -  // pending moves don't try to reference it.
 | 
| -  void CleanupWindowInPluginMoves(gfx::PluginWindowHandle window);
 | 
| -
 | 
|    RenderWidgetCompositor* compositor() const;
 | 
|  
 | 
|    const RenderWidgetInputHandler& input_handler() const {
 | 
| @@ -708,10 +699,6 @@ class CONTENT_EXPORT RenderWidget
 | 
|    // The kind of popup this widget represents, NONE if not a popup.
 | 
|    blink::WebPopupType popup_type_;
 | 
|  
 | 
| -  // Holds all the needed plugin window moves for a scroll.
 | 
| -  typedef std::vector<WebPluginGeometry> WebPluginGeometryVector;
 | 
| -  WebPluginGeometryVector plugin_window_moves_;
 | 
| -
 | 
|    // While we are waiting for the browser to update window sizes, we track the
 | 
|    // pending size temporarily.
 | 
|    int pending_window_rect_count_;
 | 
| 
 |