blob: f8bb6da8756753f892f16e11ae04b6c2b3ef12a4 [file] [log] [blame]
// 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_VIDEO_MOCK_VIDEO_DECODE_ACCELERATOR_H_
#define MEDIA_VIDEO_MOCK_VIDEO_DECODE_ACCELERATOR_H_
#include "video_decode_accelerator.h"
#include <vector>
#include "base/basictypes.h"
#include "media/base/bitstream_buffer.h"
#include "media/base/video_decoder_config.h"
#include "media/video/picture.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace media {
// Remember to use the default action of Destroy() when using EXPECT_CALL.
// Otherwise, the mock will be leaked and the test runner will complain.
class MockVideoDecodeAccelerator : public VideoDecodeAccelerator {
public:
MockVideoDecodeAccelerator();
virtual ~MockVideoDecodeAccelerator();
MOCK_METHOD2(Initialize, bool(VideoCodecProfile profile, Client* client));
MOCK_METHOD1(Decode, void(const BitstreamBuffer& bitstream_buffer));
MOCK_METHOD1(AssignPictureBuffers,
void(const std::vector<PictureBuffer>& buffers));
MOCK_METHOD1(ReusePictureBuffer, void(int32 picture_buffer_id));
MOCK_METHOD0(Flush, void());
MOCK_METHOD0(Reset, void());
MOCK_METHOD0(Destroy, void());
MOCK_METHOD0(CanDecodeOnIOThread, bool());
private:
void DeleteThis();
DISALLOW_COPY_AND_ASSIGN(MockVideoDecodeAccelerator);
};
} // namespace media
#endif // MEDIA_VIDEO_MOCK_VIDEO_DECODE_ACCELERATOR_H_