// 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 CONTENT_RENDERER_MEDIA_RENDER_MEDIA_EVENT_HANDLER_H_ #define CONTENT_RENDERER_MEDIA_RENDER_MEDIA_EVENT_HANDLER_H_ #include <vector> #include "content/common/media/media_log_records.mojom.h" #include "content/renderer/media/batching_media_log.h" #include "media/base/media_player_logging_id.h" #include "mojo/public/cpp/bindings/remote.h" namespace content { // RenderMediaEventHandler is an implementation of // BatchingMediaLog::EventHandler that forwards events to the browser process. class RenderMediaEventHandler : public BatchingMediaLog::EventHandler { … }; } // namespace content #endif // CONTENT_RENDERER_MEDIA_RENDER_MEDIA_EVENT_HANDLER_H_