Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: cc/layers/texture_layer_impl.h

Issue 485043003: cc: Use correct message loop proxy in BlockingTaskRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Help gn deal with it. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/layers/texture_layer_impl.h
diff --git a/cc/layers/texture_layer_impl.h b/cc/layers/texture_layer_impl.h
index 241fde8b6f4c26cc48f1c23735e8499156039f1a..9edf09967a01a443b7e7930ad8bdbcf518121cce 100644
--- a/cc/layers/texture_layer_impl.h
+++ b/cc/layers/texture_layer_impl.h
@@ -12,7 +12,7 @@
#include "cc/layers/layer_impl.h"
namespace cc {
-class SingleReleaseCallback;
+class SingleReleaseCallbackImpl;
class ScopedResource;
class CC_EXPORT TextureLayerImpl : public LayerImpl {
@@ -49,8 +49,9 @@ class CC_EXPORT TextureLayerImpl : public LayerImpl {
// 0--3
void SetVertexOpacity(const float vertex_opacity[4]);
- void SetTextureMailbox(const TextureMailbox& mailbox,
- scoped_ptr<SingleReleaseCallback> release_callback);
+ void SetTextureMailbox(
+ const TextureMailbox& mailbox,
+ scoped_ptr<SingleReleaseCallbackImpl> release_callback);
private:
TextureLayerImpl(LayerTreeImpl* tree_impl, int id);
@@ -69,7 +70,7 @@ class CC_EXPORT TextureLayerImpl : public LayerImpl {
scoped_ptr<ScopedResource> texture_copy_;
TextureMailbox texture_mailbox_;
- scoped_ptr<SingleReleaseCallback> release_callback_;
+ scoped_ptr<SingleReleaseCallbackImpl> release_callback_;
bool own_mailbox_;
bool valid_texture_copy_;

Powered by Google App Engine
This is Rietveld 408576698