Chromium Code Reviews| Index: content/public/common/media_metadata.cc |
| diff --git a/content/public/common/media_metadata.cc b/content/public/common/media_metadata.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..485c5a15a71fc3881336bdd3c585d8af8d416a9e |
| --- /dev/null |
| +++ b/content/public/common/media_metadata.cc |
| @@ -0,0 +1,17 @@ |
| +// Copyright 2015 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. |
| + |
| +#include "content/public/common/media_metadata.h" |
| + |
| +namespace content { |
| + |
| +MediaMetadata::MediaMetadata() = default; |
| + |
| +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 :)
|
| + |
| +bool MediaMetadata::IsEmpty() const { |
| + return title.is_null() && artist.is_null() && album.is_null(); |
| +} |
| + |
| +} // namespace content |