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

Side by Side Diff: content/public/common/media_metadata.h

Issue 1515623002: Media Session: passing metadata from renderer/ to browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@media_session_ipc
Patch Set: semicolon Created 4 years, 11 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 | « content/content_common.gypi ('k') | content/public/common/media_metadata.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 CONTENT_PUBLIC_COMMON_MEDIA_METADATA_H_
6 #define CONTENT_PUBLIC_COMMON_MEDIA_METADATA_H_
7
8 #include "base/strings/string16.h"
9 #include "content/common/content_export.h"
10
11 namespace content {
12
13 // The MediaMetadata is a structure carrying information associated to a
14 // content::MediaSession.
15 struct CONTENT_EXPORT MediaMetadata {
16 MediaMetadata();
17 ~MediaMetadata();
18
19 bool operator==(const MediaMetadata& other) const;
20 bool operator!=(const MediaMetadata& other) const;
21
22 // Title associated to the MediaSession.
23 base::string16 title;
24
25 // Artist associated to the MediaSession.
26 base::string16 artist;
27
28 // Album associated to the MediaSession.
29 base::string16 album;
30
31 // Maximum length for all the strings inside the MediaMetadata when it is sent
32 // over IPC. The renderer process should truncate the strings before sending
33 // the MediaMetadata and the browser process must do the same when receiving
34 // it.
35 static const size_t kMaxIPCStringLength;
36 };
37
38 } // namespace content
39
40 #endif // CONTENT_PUBLIC_COMMON_MEDIA_METADATA_H_
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/media_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698