// Copyright 2020 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_MEDIA_ROUTER_COMMON_TEST_MOCK_LOGGER_H_ #define COMPONENTS_MEDIA_ROUTER_COMMON_TEST_MOCK_LOGGER_H_ #include "components/media_router/common/mojom/logger.mojom.h" #include "mojo/public/cpp/bindings/pending_remote.h" #include "mojo/public/cpp/bindings/receiver.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace media_router { class MockLogger : public media_router::mojom::Logger { … }; } // namespace media_router #endif // COMPONENTS_MEDIA_ROUTER_COMMON_TEST_MOCK_LOGGER_H_