blob: d2087adf404575fdbdd8d93c7aaef7b8cd39f24e [file] [log] [blame]
// Copyright 2017 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_GPU_MOCK_ANDROID_VIDEO_SURFACE_CHOOSER_H_
#define MEDIA_GPU_MOCK_ANDROID_VIDEO_SURFACE_CHOOSER_H_
#include "media/gpu/android_video_surface_chooser.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
// A fake surface chooser that lets tests choose the surface with
// ProvideOverlay() and ProvideSurfaceTexture().
class FakeSurfaceChooser : public AndroidVideoSurfaceChooser {
public:
FakeSurfaceChooser();
~FakeSurfaceChooser() override;
// Mocks that are called by the fakes below.
MOCK_METHOD0(MockInitialize, void());
MOCK_METHOD0(MockReplaceOverlayFactory, void());
void Initialize(UseOverlayCB use_overlay_cb,
UseSurfaceTextureCB use_surface_texture_cb,
AndroidOverlayFactoryCB initial_factory) override;
void ReplaceOverlayFactory(AndroidOverlayFactoryCB factory) override;
// Calls the corresponding callback to choose the surface.
void ProvideOverlay(std::unique_ptr<AndroidOverlay> overlay);
void ProvideSurfaceTexture();
UseOverlayCB use_overlay_cb_;
UseSurfaceTextureCB use_surface_texture_cb_;
AndroidOverlayFactoryCB factory_;
private:
DISALLOW_COPY_AND_ASSIGN(FakeSurfaceChooser);
};
} // namespace media
#endif // MEDIA_GPU_MOCK_ANDROID_VIDEO_SURFACE_CHOOSER_H_