From 5f46636a8a12805c766fb5b9b448f0061d7e2454 Mon Sep 17 00:00:00 2001 From: danakj Date: Thu, 18 Jun 2015 17:01:40 -0700 Subject: cc: Stop passing a ResourceUpdateQueue to Layer::Update(). The queue is unused so there's no need to pass it around. This is a minimal change to just stop passing the queue, it doesn't change the proxies yet. They can stop making a queue entirely in the future. R=enne, vmpstr BUG=413479 Review URL: https://codereview.chromium.org/1177223008 Cr-Commit-Position: refs/heads/master@{#335168} --- cc/layers/io_surface_layer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cc/layers/io_surface_layer.h') diff --git a/cc/layers/io_surface_layer.h b/cc/layers/io_surface_layer.h index 56823f3..14eabd9 100644 --- a/cc/layers/io_surface_layer.h +++ b/cc/layers/io_surface_layer.h @@ -18,7 +18,7 @@ class CC_EXPORT IOSurfaceLayer : public Layer { scoped_ptr CreateLayerImpl(LayerTreeImpl* tree_impl) override; void PushPropertiesTo(LayerImpl* layer) override; - bool Update(ResourceUpdateQueue* queue) override; + bool Update() override; protected: bool HasDrawableContent() const override; -- cgit v1.1