| Index: trunk/src/content/browser/renderer_host/render_widget_host_view_mac.h
|
| ===================================================================
|
| --- trunk/src/content/browser/renderer_host/render_widget_host_view_mac.h (revision 282673)
|
| +++ trunk/src/content/browser/renderer_host/render_widget_host_view_mac.h (working copy)
|
| @@ -442,10 +442,6 @@
|
| // Container for the NSView drawn by the browser compositor.
|
| scoped_ptr<BrowserCompositorViewMac> browser_compositor_view_;
|
|
|
| - // Set when the browser compositor is requested to paint, and unset when the
|
| - // browser compositor paints in DoBrowserCompositorPendingPaint.
|
| - bool browser_compositor_has_pending_paint_;
|
| -
|
| // Placeholder that is allocated while browser_compositor_view_ is NULL,
|
| // indicating that a BrowserCompositorViewMac may be allocated. This is to
|
| // help in recycling the internals of BrowserCompositorViewMac.
|
| @@ -521,7 +517,6 @@
|
| const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE;
|
| virtual NSView* BrowserCompositorSuperview() OVERRIDE;
|
| virtual ui::Layer* BrowserCompositorRootLayer() OVERRIDE;
|
| - virtual bool BrowserCompositorShouldDrawImmediately() OVERRIDE;
|
|
|
| private:
|
| friend class RenderWidgetHostViewMacTest;
|
| @@ -547,7 +542,6 @@
|
|
|
| void EnsureBrowserCompositorView();
|
| void DestroyBrowserCompositorView();
|
| - void DoBrowserCompositorPendingPaint();
|
|
|
| void EnsureSoftwareLayer();
|
| void DestroySoftwareLayer();
|
| @@ -589,10 +583,6 @@
|
| // Indicates if the page is loading.
|
| bool is_loading_;
|
|
|
| - // Indicates if the view is currently stalled waiting for a new frame to come
|
| - // in.
|
| - bool is_paused_for_resize_or_repaint_;
|
| -
|
| // The text to be shown in the tooltip, supplied by the renderer.
|
| base::string16 tooltip_text_;
|
|
|
|
|