Index: cc/trees/layer_tree_host.h |
diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h |
index 508a7281ee9a7acdd2b5c3c2f1dc3f97a36c0fbf..17dacc82b8e6cfa488bbf04261f71807956a0051 100644 |
--- a/cc/trees/layer_tree_host.h |
+++ b/cc/trees/layer_tree_host.h |
@@ -65,7 +65,6 @@ struct ScrollAndScaleSet; |
struct CC_EXPORT RendererCapabilities { |
RendererCapabilities(ResourceFormat best_texture_format, |
bool allow_partial_texture_updates, |
- bool using_offscreen_context3d, |
int max_texture_size, |
bool using_shared_memory_resources); |
@@ -75,7 +74,6 @@ struct CC_EXPORT RendererCapabilities { |
// Duplicate any modification to this list to RendererCapabilitiesImpl. |
ResourceFormat best_texture_format; |
bool allow_partial_texture_updates; |
- bool using_offscreen_context3d; |
int max_texture_size; |
bool using_shared_memory_resources; |
}; |
@@ -98,11 +96,6 @@ class CC_EXPORT LayerTreeHost { |
void SetLayerTreeHostClientReady(); |
- void set_needs_filter_context() { needs_filter_context_ = true; } |
- bool needs_offscreen_context() const { |
- return needs_filter_context_; |
- } |
- |
// LayerTreeHost interface to Proxy. |
void WillBeginMainFrame() { |
client_->WillBeginMainFrame(source_frame_number_); |
@@ -366,7 +359,6 @@ class CC_EXPORT LayerTreeHost { |
bool animating_; |
bool needs_full_tree_sync_; |
- bool needs_filter_context_; |
base::CancelableClosure prepaint_callback_; |