Chromium Code Reviews

Unified Diff: cc/layers/video_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: Comments. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: cc/layers/video_layer_impl.h
diff --git a/cc/layers/video_layer_impl.h b/cc/layers/video_layer_impl.h
index d2e0fe3976062fda9105a0bdf2a7e41285d2879b..34f013ac2728da7184747d7411a7039cb424a28f 100644
--- a/cc/layers/video_layer_impl.h
+++ b/cc/layers/video_layer_impl.h
@@ -9,7 +9,7 @@
#include "cc/base/cc_export.h"
#include "cc/layers/layer_impl.h"
-#include "cc/resources/release_callback.h"
+#include "cc/resources/release_callback_impl.h"
#include "cc/resources/video_resource_updater.h"
#include "media/base/video_rotation.h"
@@ -70,7 +70,7 @@ class CC_EXPORT VideoLayerImpl : public LayerImpl {
// ExternalResource (aka TextureMailbox) classes.
std::vector<unsigned> software_resources_;
// Called once for each software resource.
- ReleaseCallback software_release_callback_;
+ ReleaseCallbackImpl software_release_callback_;
DISALLOW_COPY_AND_ASSIGN(VideoLayerImpl);
};

Powered by Google App Engine