// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SYSTEM_MEDIA_CONTROLS_MOCK_SYSTEM_MEDIA_CONTROLS_H_ #define COMPONENTS_SYSTEM_MEDIA_CONTROLS_MOCK_SYSTEM_MEDIA_CONTROLS_H_ #include "components/system_media_controls/system_media_controls.h" #include "testing/gmock/include/gmock/gmock.h" namespace system_media_controls { class SystemMediaControlsObserver; namespace testing { // Mock implementation of SystemMediaControls for testing. class MockSystemMediaControls : public SystemMediaControls { … }; } // namespace testing } // namespace system_media_controls #endif // COMPONENTS_SYSTEM_MEDIA_CONTROLS_MOCK_SYSTEM_MEDIA_CONTROLS_H_