| Index: chrome/browser/media/router/media_status.h
|
| diff --git a/chrome/browser/media/router/media_status.h b/chrome/browser/media/router/media_status.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fa9540f5dc68d65acf0b29596ad31b9a138989c7
|
| --- /dev/null
|
| +++ b/chrome/browser/media/router/media_status.h
|
| @@ -0,0 +1,28 @@
|
| +// 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.
|
| +
|
| +#ifndef CHROME_BROWSER_MEDIA_MEDIA_STATUS_H_
|
| +#define CHROME_BROWSER_MEDIA_MEDIA_STATUS_H_
|
| +
|
| +#include <string>
|
| +
|
| +struct MediaStatus {
|
| + public:
|
| + MediaStatus();
|
| + virtual ~MediaStatus();
|
| +
|
| + std::string title;
|
| + std::string status;
|
| + bool can_play_pause;
|
| + bool can_mute;
|
| + bool can_set_volume;
|
| + bool can_seek;
|
| + bool is_paused;
|
| + bool is_muted;
|
| + float volume;
|
| + uint32_t duration;
|
| + uint32_t current_time;
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_MEDIA_MEDIA_STATUS_H_
|
|
|