| Index: cc/trees/layer_tree_host.cc
|
| diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc
|
| index 7abf735a319f48b7bca8608574a9873852d33fce..6a6385704ba1c3b95a78c7bbe443e242f7f52518 100644
|
| --- a/cc/trees/layer_tree_host.cc
|
| +++ b/cc/trees/layer_tree_host.cc
|
| @@ -549,6 +549,13 @@ bool LayerTreeHost::IsVisible() const {
|
| return visible_;
|
| }
|
|
|
| +void LayerTreeHost::SetIsFullscreen(bool is_fullscreen) {
|
| + if (is_fullscreen_ == is_fullscreen)
|
| + return;
|
| + is_fullscreen_ = is_fullscreen;
|
| + proxy_->SetIsFullscreen(is_fullscreen);
|
| +}
|
| +
|
| void LayerTreeHost::NotifyInputThrottledUntilCommit() {
|
| proxy_->NotifyInputThrottledUntilCommit();
|
| }
|
|
|