Chromium Code Reviews| Index: Source/core/rendering/compositing/RenderLayerCompositor.h |
| diff --git a/Source/core/rendering/compositing/RenderLayerCompositor.h b/Source/core/rendering/compositing/RenderLayerCompositor.h |
| index c9a43c450af89a76ee80dfaa08da14165e673465..d848f19ba84679d2618efa6f337c07b958393a70 100644 |
| --- a/Source/core/rendering/compositing/RenderLayerCompositor.h |
| +++ b/Source/core/rendering/compositing/RenderLayerCompositor.h |
| @@ -190,6 +190,8 @@ public: |
| void setOverlayLayer(GraphicsLayer*); |
| + bool inOverlayFullscreenVideo() const { return m_inOverlayFullscreenVideo; } |
| + |
| private: |
| class OverlapMap; |
| @@ -244,8 +246,6 @@ private: |
| DocumentLifecycle& lifecycle() const; |
| - void applyOverlayFullscreenVideoAdjustment(); |
| - |
| RenderView& m_renderView; |
| OwnPtr<GraphicsLayer> m_rootContentLayer; |
| OwnPtr<GraphicsLayer> m_rootTransformLayer; |
| @@ -284,6 +284,9 @@ private: |
| #if USE(RUBBER_BANDING) |
| OwnPtr<GraphicsLayer> m_layerForOverhangShadow; |
| #endif |
| + |
| + bool m_inOverlayFullscreenVideo; |
| + void applyOverlayFullscreenVideoAdjustment(); |
|
Rick Byers
2014/06/10 20:02:24
we usually list all the methods before the fields,
|
| }; |
| } // namespace WebCore |