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

Unified Diff: chrome/browser/media/router/media_sink_service.h

Issue 2662393005: [Media Router] (device discovery) Create MediaSinkService interface (Closed)
Patch Set: resolve code review comments from Derek 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/router/media_sink_service.h
diff --git a/chrome/browser/media/router/media_sink_service.h b/chrome/browser/media/router/media_sink_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..2c90c8ff39d25f5c2cb07580be896fa5d7c091fb
--- /dev/null
+++ b/chrome/browser/media/router/media_sink_service.h
@@ -0,0 +1,48 @@
+// 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_SINK_SERVICE_H_
+#define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_SERVICE_H_
+
+#include <memory>
+#include <vector>
+
+#include "base/callback.h"
+#include "chrome/browser/media/router/media_sink.h"
+
+namespace media_router {
+
+class MediaSinksObserver;
+
+// A service which can be used to start device discovery and resolution in the
mark a. foltz 2017/02/09 23:47:52 ... to start background discovery and resolution o
zhaobin 2017/02/14 00:42:17 Done.
+// background to generate MediaSinks. In addition, the service is capable of
+// answering MediaSink queries using the sinks that it generated.
+// This class is not thread safe. All methods must be called from the UI thread.
mark a. foltz 2017/02/09 23:47:51 I expect most of the code that implements actual s
zhaobin 2017/02/14 00:42:16 Done.
+class MediaSinkService {
+ public:
+ // Callback used for |Start()|.
+ // Arg 0: Sinks discovered and resolved by the service.
+ using OnSinksDiscoveredCallback =
+ base::Callback<std::vector<std::unique_ptr<MediaSink>>>;
mark a. foltz 2017/02/09 23:47:52 Why does this need to pass ownership of the sinks
zhaobin 2017/02/14 00:42:16 Done.
+
+ virtual ~MediaSinkService() = default;
+
+ // Starts sink discovery. No-ops if already started.
mark a. foltz 2017/02/09 23:47:52 Maybe the callback should be passed in the ctor if
zhaobin 2017/02/14 00:42:16 Done.
+ // Sinks discovered and resolved are continuously passed to
+ // |callback|.
+ virtual void Start(const OnSinksDiscoveredCallback& callback) = 0;
+
+ // Adds a sink query to observe for MediaSink updates.
+ // Only one observer can be added for a given MediaSource.
mark a. foltz 2017/02/09 23:47:52 Where is the MediaSource passed? What happens if
zhaobin 2017/02/14 00:42:17 We can get MediaSource from observer->source(). W
mark a. foltz 2017/02/15 01:01:02 That relies on the caller to keep track of a sourc
+ // Start() must be called first. This class does not take
+ // ownership of |observer|.
+ virtual void AddSinkQuery(MediaSinksObserver* observer) = 0;
+
+ // Removes a sink query and stop observing for MediaSink updates.
mark a. foltz 2017/02/09 23:47:52 ...stops observing MediaSink...
zhaobin 2017/02/14 00:42:16 Done.
+ virtual void RemoveSinkQuery(MediaSinksObserver* observer) = 0;
mark a. foltz 2017/02/09 23:47:52 What happens if called with an observer not regist
zhaobin 2017/02/14 00:42:17 no-op if observer does not exist.
+};
mark a. foltz 2017/02/09 23:47:52 Allocate a base::ThreadChecker to enforce thread s
zhaobin 2017/02/14 00:42:16 Done.
+
+} // namespace media_router
+
+#endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_SERVICE_H_
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698