Index: cc/trees/layer_tree_host.h |
diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h |
index 51622245b1ef7feacc27912658df618094697975..be66c0803e3640291ff55364f949019ca3c367ab 100644 |
--- a/cc/trees/layer_tree_host.h |
+++ b/cc/trees/layer_tree_host.h |
@@ -136,6 +136,8 @@ class CC_EXPORT LayerTreeHost : public NON_EXPORTED_BASE(SurfaceReferenceOwner), |
void SetVisible(bool visible); |
bool IsVisible() const; |
+ void SetIsFullscreen(bool is_fullscreen); |
+ |
// Called in response to an CompositorFrameSink request made to the client |
// using LayerTreeHostClient::RequestNewCompositorFrameSink. The client will |
// be informed of the CompositorFrameSink initialization status using |
@@ -551,6 +553,7 @@ class CC_EXPORT LayerTreeHost : public NON_EXPORTED_BASE(SurfaceReferenceOwner), |
LayerTreeDebugState debug_state_; |
bool visible_ = false; |
+ bool is_fullscreen_ = false; |
bool has_gpu_rasterization_trigger_ = false; |
bool content_is_suitable_for_gpu_rasterization_ = true; |