| Index: content/public/browser/media_session_observer.h
|
| diff --git a/content/public/browser/media_session_observer.h b/content/public/browser/media_session_observer.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..efd9e259967e09d4500fec3b998ad524e4971b9d
|
| --- /dev/null
|
| +++ b/content/public/browser/media_session_observer.h
|
| @@ -0,0 +1,44 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// 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_SESSION_OBSERVER_H_
|
| +#define CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_
|
| +
|
| +#include "base/macros.h"
|
| +#include "base/optional.h"
|
| +#include "content/common/content_export.h"
|
| +#include "content/public/common/media_metadata.h"
|
| +
|
| +namespace content {
|
| +
|
| +class MediaSession;
|
| +class MediaSessionImpl;
|
| +
|
| +// The observer for observing MediaSession events.
|
| +class CONTENT_EXPORT MediaSessionObserver {
|
| + public:
|
| + // Called when the observed MediaSession is being destroyed. Subclasses must
|
| + // do clean up in this method.
|
| + virtual void MediaSessionDestroyed() = 0;
|
| +
|
| + // Called when the observed MediaSession has changed its state.
|
| + virtual void MediaSessionStateChanged(bool is_controllable,
|
| + bool is_suspended) {}
|
| +
|
| + // Called when the observed MediaSession has changed metadata.
|
| + virtual void MediaSessionMetadataChanged(
|
| + const base::Optional<MediaMetadata>& metadata) {}
|
| +
|
| + protected:
|
| + // Create a MediaSessionObserver and start observing |session|.
|
| + explicit MediaSessionObserver(MediaSession* session);
|
| + virtual ~MediaSessionObserver() = default;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(MediaSessionObserver);
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_BROWSER_MEDIA_SESSION_OBSERVER_H_
|
|
|