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

Unified Diff: chrome/browser/media/router/media_route_status_observer.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/BUILD.gn ('k') | chrome/browser/media/router/media_router.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/router/media_route_status_observer.h
diff --git a/chrome/browser/media/router/media_route_status_observer.h b/chrome/browser/media/router/media_route_status_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..ab940dc293d97c93715c32a92d201bfadaf6f19a
--- /dev/null
+++ b/chrome/browser/media/router/media_route_status_observer.h
@@ -0,0 +1,22 @@
+// 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_ROUTER_MEDIA_ROUTE_STATUS_OBSERVER_H_
+#define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_STATUS_OBSERVER_H_
+
+struct MediaStatus;
+
+namespace media_router {
+
+class MediaRouteStatusObserver {
+ public:
+ MediaRouteStatusObserver() {}
+ virtual ~MediaRouteStatusObserver() {}
+
+ virtual void OnMediaRouteStatusUpdated(const MediaStatus& status) = 0;
+};
+
+} // namespace media_router
+
+#endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_STATUS_OBSERVER_H_
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/browser/media/router/media_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698