Index: cc/trees/layer_tree_host.h |
diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h |
index db6e09e20b2e61228272c99ac09401dbf1315660..ebf5c238d37ab8c87d8c1212aa88b6f89222cea0 100644 |
--- a/cc/trees/layer_tree_host.h |
+++ b/cc/trees/layer_tree_host.h |
@@ -145,7 +145,6 @@ class CC_EXPORT LayerTreeHost { |
virtual std::unique_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl( |
LayerTreeHostImplClient* client); |
void DidLoseOutputSurface(); |
- bool output_surface_lost() const { return output_surface_lost_; } |
void DidCommitAndDrawFrame() { client_->DidCommitAndDrawFrame(); } |
void DidCompleteSwapBuffers() { client_->DidCompleteSwapBuffers(); } |
bool UpdateLayers(); |
@@ -327,9 +326,6 @@ class CC_EXPORT LayerTreeHost { |
std::unique_ptr<Proxy> proxy_for_testing, |
std::unique_ptr<BeginFrameSource> external_begin_frame_source); |
void InitializePictureCacheForTesting(); |
- void SetOutputSurfaceLostForTesting(bool is_lost) { |
- output_surface_lost_ = is_lost; |
- } |
void SetTaskRunnerProviderForTesting( |
std::unique_ptr<TaskRunnerProvider> task_runner_provider); |
@@ -405,7 +401,6 @@ class CC_EXPORT LayerTreeHost { |
// |current_output_surface_|. |
std::unique_ptr<OutputSurface> new_output_surface_; |
std::unique_ptr<OutputSurface> current_output_surface_; |
- bool output_surface_lost_; |
base::WeakPtr<InputHandler> input_handler_weak_ptr_; |