Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1165)

Side by Side Diff: chrome/browser/media/router/media_status.h

Issue 2724513002: (Not for review) Dummy C++ side Custom Controls implementation (Closed)
Patch Set: . Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 #ifndef CHROME_BROWSER_MEDIA_MEDIA_STATUS_H_
6 #define CHROME_BROWSER_MEDIA_MEDIA_STATUS_H_
7
8 #include <string>
9
10 struct MediaStatus {
11 public:
12 MediaStatus();
13 virtual ~MediaStatus();
14
15 std::string title;
16 std::string status;
17 bool can_play_pause;
18 bool can_mute;
19 bool can_set_volume;
20 bool can_seek;
21 bool is_paused;
22 bool is_muted;
23 float volume;
24 uint32_t duration;
25 uint32_t current_time;
26 };
27
28 #endif // CHROME_BROWSER_MEDIA_MEDIA_STATUS_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/router/media_router_base.cc ('k') | chrome/browser/media/router/media_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698