// Copyright 2012 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_MEDIA_OBSERVER_H_ #define CONTENT_PUBLIC_BROWSER_MEDIA_OBSERVER_H_ #include "content/public/browser/media_request_state.h" #include "third_party/blink/public/common/mediastream/media_stream_request.h" class GURL; namespace content { // An embedder may implement MediaObserver and return it from // ContentBrowserClient to receive callbacks as media events occur. class MediaObserver { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_MEDIA_OBSERVER_H_