Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: media/base/media_content_type.h

Issue 1996043002: Split MediaContentType and AudioFocusType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed nits Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/media_content_type.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_BASE_MEDIA_CONTENT_TYPE_H_
6 #define MEDIA_BASE_MEDIA_CONTENT_TYPE_H_
7
8 #include "base/time/time.h"
9 #include "media/base/media_export.h"
10
11 namespace media {
12
13 // The content type of a media player, which will be used by MediaSession to
14 // control its players.
15 enum class MediaContentType {
16 // Type indicating that a player is persistent, which needs to take audio
17 // focus to play.
18 Persistent,
19 // Type indicating that a player only plays a transient sound.
20 Transient,
21 // Type indicating that a player is a Pepper instance. MediaSession may duck
22 // the player instead of pausing it.
23 Pepper,
24 // Type indicating that a player cannot be controlled. MediaSession wil ignore
25 // this player.
26 Uncontrollable
27 };
28
29 // Utility function for deciding the MediaContentType of a player based on its
30 // duration.
31 MEDIA_EXPORT MediaContentType
32 DurationToMediaContentType(base::TimeDelta duration);
33
34 } // namespace media
35
36 #endif // MEDIA_BASE_MEDIA_CONTENT_TYPE_H_
OLDNEW
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/media_content_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698