Chromium Code Reviews| Index: media/base/hdr_metadata.cc |
| diff --git a/media/base/hdr_metadata.cc b/media/base/hdr_metadata.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ed8b269df7d3924ec768bb47a22bf22c991bba91 |
| --- /dev/null |
| +++ b/media/base/hdr_metadata.cc |
| @@ -0,0 +1,20 @@ |
| +// 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. |
| + |
| +#include "media/base/hdr_metadata.h" |
| + |
| +#include "base/logging.h" |
|
halliwell
2016/09/14 18:58:40
nit, unnecessary
servolk
2016/09/14 22:34:35
Done.
|
| + |
| +namespace media { |
| + |
| +MasteringMetadata::MasteringMetadata() {} |
| +MasteringMetadata::MasteringMetadata(const MasteringMetadata& rhs) = default; |
| + |
| +HDRMetadata::HDRMetadata() {} |
| +HDRMetadata::HDRMetadata(const HDRMetadata& rhs) = default; |
| + |
| +ColorMetadata::ColorMetadata() {} |
| +ColorMetadata::ColorMetadata(const ColorMetadata& rhs) = default; |
| + |
| +} // namespace media |