// Copyright 2018 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_PUBLIC_BROWSER_WEBRTC_EVENT_LOGGER_H_ #define CONTENT_PUBLIC_BROWSER_WEBRTC_EVENT_LOGGER_H_ #include "base/files/file_path.h" #include "content/common/content_export.h" #include "content/public/browser/global_routing_id.h" namespace content { // Interface for a logger of WebRTC events, which the embedding application may // subclass and instantiate. Only one instance may ever be created, and it must // live until the embedding application terminates. class CONTENT_EXPORT WebRtcEventLogger { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_WEBRTC_EVENT_LOGGER_H_