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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« 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