summaryrefslogtreecommitdiff
path: root/chromium/media/base/media_status.cc
blob: 63e988e814168b04348e7d659c5f83d5f2999e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2018 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_status.h"

namespace media {

MediaStatus::MediaStatus() = default;

MediaStatus::MediaStatus(const MediaStatus& other) = default;

MediaStatus::~MediaStatus() = default;

MediaStatus& MediaStatus::operator=(const MediaStatus& other) = default;

bool MediaStatus::operator==(const MediaStatus& other) const {
  return std::tie(title, can_play_pause, can_mute, can_set_volume, can_seek,
                  state, is_muted, volume, duration, current_time,
                  reached_end_of_stream) ==
         std::tie(other.title, other.can_play_pause, other.can_mute,
                  other.can_set_volume, other.can_seek, other.state,
                  other.is_muted, other.volume, other.duration,
                  other.current_time, other.reached_end_of_stream);
}

}  // namespace media