summaryrefslogtreecommitdiffstats
path: root/media/base/media_track.cc
blob: ad5178f2b029a9d5b4e2967695f09fb0f36b761e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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/media_track.h"

namespace media {

MediaTrack::MediaTrack(Type type,
                       const std::string& id,
                       const std::string& kind,
                       const std::string& label,
                       const std::string& lang)
    : type_(type), id_(id), kind_(kind), label_(label), language_(lang) {}

MediaTrack::~MediaTrack() {}

}  // namespace media