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

Unified Diff: media/filters/mock_gpu_video_decoder_factories.h

Issue 13890012: Integrate VDA with WebRTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update the license of rtc_video_decoder.h Created 7 years, 5 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | media/filters/mock_gpu_video_decoder_factories.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/mock_gpu_video_decoder_factories.h
diff --git a/media/filters/mock_gpu_video_decoder_factories.h b/media/filters/mock_gpu_video_decoder_factories.h
new file mode 100644
index 0000000000000000000000000000000000000000..6700870105c10592d8fc8a984375ff51f1f125d3
--- /dev/null
+++ b/media/filters/mock_gpu_video_decoder_factories.h
@@ -0,0 +1,55 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MEDIA_FILTERS_MOCK_GPU_VIDEO_DECODER_FACTORIES_H_
+#define MEDIA_FILTERS_MOCK_GPU_VIDEO_DECODER_FACTORIES_H_
+
+#include "base/message_loop/message_loop_proxy.h"
+#include "media/filters/gpu_video_decoder.h"
+#include "media/video/video_decode_accelerator.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "third_party/skia/include/core/SkBitmap.h"
+
+template <class T>
+class scoped_refptr;
+
+namespace base {
+class SharedMemory;
+}
+
+namespace media {
+
+class MockGpuVideoDecoderFactories : public GpuVideoDecoder::Factories {
+ public:
+ MockGpuVideoDecoderFactories();
+ MOCK_METHOD2(CreateVideoDecodeAccelerator,
+ VideoDecodeAccelerator*(VideoCodecProfile,
+ VideoDecodeAccelerator::Client*));
+ MOCK_METHOD5(CreateTextures,
+ uint32(int32 count,
+ const gfx::Size& size,
+ std::vector<uint32>* texture_ids,
+ std::vector<gpu::Mailbox>* texture_mailboxes,
+ uint32 texture_target));
+ MOCK_METHOD1(DeleteTexture, void(uint32 texture_id));
+ MOCK_METHOD1(WaitSyncPoint, void(uint32 sync_point));
+ MOCK_METHOD4(ReadPixels,
+ void(uint32 texture_id,
+ uint32 texture_target,
+ const gfx::Size& size,
+ const SkBitmap& pixels));
+ MOCK_METHOD1(CreateSharedMemory, base::SharedMemory*(size_t size));
+ MOCK_METHOD0(GetMessageLoop, scoped_refptr<base::MessageLoopProxy>());
+ MOCK_METHOD0(Abort, void());
+ MOCK_METHOD0(IsAborted, bool());
+
+ private:
+ virtual ~MockGpuVideoDecoderFactories();
+
+ DISALLOW_COPY_AND_ASSIGN(MockGpuVideoDecoderFactories);
+};
+
+} // namespace media
+
+#endif // MEDIA_FILTERS_MOCK_GPU_VIDEO_DECODER_FACTORIES_H_
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | media/filters/mock_gpu_video_decoder_factories.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698