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

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

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: cleanup Created 5 years 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
OLDNEW
(Empty)
1 // Copyright 2015 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 #include "content/public/common/media_metadata.h"
6
7 namespace content {
8
9 MediaMetadata::MediaMetadata() = default;
10
11 MediaMetadata::~MediaMetadata() = default;
jochen (gone - plz use gerrit) 2015/12/14 12:38:30 that's more code than {}...
mlamouri (slow - plz ping) 2016/01/05 16:01:16 C++ standard body probably takes feedback :)
12
13 bool MediaMetadata::IsEmpty() const {
14 return title.is_null() && artist.is_null() && album.is_null();
15 }
16
17 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698