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

Unified Diff: media/filters/mock_gpu_video_decoder_factories.h

Issue 20632002: Add media::VideoEncodeAccelerator with WebRTC integration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@git-svn
Patch Set: 6243184e VEA reentrancy. Created 7 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: 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
deleted file mode 100644
index e0ad274b66f6c1e2d97b3bb6bead9ff16ac88da2..0000000000000000000000000000000000000000
--- a/media/filters/mock_gpu_video_decoder_factories.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright 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_factories.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 GpuVideoDecoderFactories {
- 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_

Powered by Google App Engine
This is Rietveld 408576698