blob: 7d9d0f4a1d9f8834d5f44755e68b8661e2cdb466 [file] [log] [blame]
// Copyright 2017 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 "ash/test_media_client.h"
namespace ash {
TestMediaClient::TestMediaClient() = default;
TestMediaClient::~TestMediaClient() = default;
void TestMediaClient::HandleMediaNextTrack() {
++handle_media_next_track_count_;
}
void TestMediaClient::HandleMediaPlayPause() {
++handle_media_play_pause_count_;
}
void TestMediaClient::HandleMediaPrevTrack() {
++handle_media_prev_track_count_;
}
void TestMediaClient::RequestCaptureState() {}
void TestMediaClient::SuspendMediaSessions() {
media_sessions_suspended_ = true;
}
} // namespace ash