// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_EMPTY_WEB_MEDIA_PLAYER_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_EMPTY_WEB_MEDIA_PLAYER_H_ #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "third_party/blink/public/platform/web_media_player.h" namespace cc { class PaintCanvas; class PaintFlags; } // namespace cc namespace blink { // An empty WebMediaPlayer used only for tests. This class defines the methods // of WebMediaPlayer so that mock WebMediaPlayers don't need to redefine them if // they don't care their behavior. class EmptyWebMediaPlayer : public WebMediaPlayer { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_EMPTY_WEB_MEDIA_PLAYER_H_