OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 "media/base/text_track_config.h" |
| 6 |
| 7 namespace media { |
| 8 |
| 9 TextTrackConfig::TextTrackConfig() |
| 10 : kind_(kTextNone) { |
| 11 } |
| 12 |
| 13 TextTrackConfig::TextTrackConfig(TextKind kind, |
| 14 const std::string& label, |
| 15 const std::string& language) |
| 16 : kind_(kind), |
| 17 label_(label), |
| 18 language_(language) { |
| 19 } |
| 20 |
| 21 bool TextTrackConfig::Matches(const TextTrackConfig& config) const { |
| 22 return config.kind() == kind_ && |
| 23 config.label() == label_ && |
| 24 config.language() == language_; |
| 25 } |
| 26 |
| 27 } // namespace media |
OLD | NEW |