diff options
Diffstat (limited to 'cc/layers/heads_up_display_layer.cc')
-rw-r--r-- | cc/layers/heads_up_display_layer.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cc/layers/heads_up_display_layer.cc b/cc/layers/heads_up_display_layer.cc index de44fac..c99bd32 100644 --- a/cc/layers/heads_up_display_layer.cc +++ b/cc/layers/heads_up_display_layer.cc @@ -22,7 +22,7 @@ HeadsUpDisplayLayer::HeadsUpDisplayLayer() : ContentsScalingLayer() { HeadsUpDisplayLayer::~HeadsUpDisplayLayer() {} -void HeadsUpDisplayLayer::Update(ResourceUpdateQueue*, +bool HeadsUpDisplayLayer::Update(ResourceUpdateQueue*, const OcclusionTracker*) { gfx::Size device_viewport = layer_tree_host()->device_viewport_size(); float device_scale_factor = layer_tree_host()->device_scale_factor(); @@ -54,6 +54,7 @@ void HeadsUpDisplayLayer::Update(ResourceUpdateQueue*, // The HudLayer used to show up with the wrong bounds for one frame. // This call fixes that the bounds get passed to LayerImpl on the next commit. SavePaintProperties(); + return false; } bool HeadsUpDisplayLayer::DrawsContent() const { return true; } |