Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1281)

Unified Diff: Source/core/rendering/compositing/RenderLayerCompositor.h

Issue 317373007: Report correct touch hit rects for fullscreen HTML5 video on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add virtual test Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698