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

Unified Diff: content/common/gpu/media/v4l2_video_decode_accelerator.h

Issue 185403020: Make VEA client of command buffer; move sync. IPC to VDA/VEA::Initialize() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: f2a9ccb5 Rebase, posciak@ comments. Created 6 years, 9 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: content/common/gpu/media/v4l2_video_decode_accelerator.h
diff --git a/content/common/gpu/media/v4l2_video_decode_accelerator.h b/content/common/gpu/media/v4l2_video_decode_accelerator.h
index 0c6a4930714de29f9a10d33975255dc90d011f26..46eb3c4a2a43f133ad07bc8defff0cff5fa4c1c9 100644
--- a/content/common/gpu/media/v4l2_video_decode_accelerator.h
+++ b/content/common/gpu/media/v4l2_video_decode_accelerator.h
@@ -426,6 +426,9 @@ class CONTENT_EXPORT V4L2VideoDecodeAccelerator
// The codec we'll be decoding for.
media::VideoCodecProfile video_profile_;
+ // The WeakPtrFactory for |weak_this_|.
Ami GONE FROM CHROMIUM 2014/03/17 03:17:54 No point in having weak_this_ anymore, is there? (
sheu 2014/03/18 22:38:35 Careful what you wish for. It's threading all the
+ base::WeakPtrFactory<V4L2VideoDecodeAccelerator> weak_this_factory_;
+
DISALLOW_COPY_AND_ASSIGN(V4L2VideoDecodeAccelerator);
};

Powered by Google App Engine
This is Rietveld 408576698