Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ROUTER_MEDIA_SINK_SERVICE_H_ | |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_SERVICE_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/callback.h" | |
| 12 #include "chrome/browser/media/router/media_sink.h" | |
| 13 | |
| 14 namespace media_router { | |
| 15 | |
| 16 class MediaSinksObserver; | |
| 17 | |
| 18 // 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.
| |
| 19 // background to generate MediaSinks. In addition, the service is capable of | |
| 20 // answering MediaSink queries using the sinks that it generated. | |
| 21 // 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.
| |
| 22 class MediaSinkService { | |
| 23 public: | |
| 24 // Callback used for |Start()|. | |
| 25 // Arg 0: Sinks discovered and resolved by the service. | |
| 26 using OnSinksDiscoveredCallback = | |
| 27 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.
| |
| 28 | |
| 29 virtual ~MediaSinkService() = default; | |
| 30 | |
| 31 // 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.
| |
| 32 // Sinks discovered and resolved are continuously passed to | |
| 33 // |callback|. | |
| 34 virtual void Start(const OnSinksDiscoveredCallback& callback) = 0; | |
| 35 | |
| 36 // Adds a sink query to observe for MediaSink updates. | |
| 37 // 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
| |
| 38 // Start() must be called first. This class does not take | |
| 39 // ownership of |observer|. | |
| 40 virtual void AddSinkQuery(MediaSinksObserver* observer) = 0; | |
| 41 | |
| 42 // 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.
| |
| 43 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.
| |
| 44 }; | |
|
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.
| |
| 45 | |
| 46 } // namespace media_router | |
| 47 | |
| 48 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_SERVICE_H_ | |
| OLD | NEW |