OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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_ROUTE_FACTORY_H_ | |
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_FACTORY_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/basictypes.h" | |
11 #include "base/gtest_prod_util.h" | |
12 #include "base/memory/singleton.h" | |
13 #include "base/threading/non_thread_safe.h" | |
14 #include "chrome/browser/media/router/media_sink.h" | |
15 #include "chrome/browser/media/router/media_source.h" | |
16 | |
17 namespace media_router { | |
18 | |
19 struct MediaRoute; | |
20 | |
21 // Shared singleton which coordinates the assignment of unique IDs to | |
22 // MediaRoute objects. | |
23 class MediaRouteFactory : public base::NonThreadSafe { | |
24 public: | |
25 static MediaRouteFactory* GetInstance(); | |
26 | |
27 // Returns a MediaRoute object with a unique ID. | |
28 // |type|: Type of media route. | |
xhwang
2015/03/09 17:37:31
There's no |type| in the signature.
Kevin M
2015/03/09 23:32:06
Done.
| |
29 // |media_source|: Description of source of the route. | |
30 // |sink_id|: ID of the MediaSink of the route. | |
31 // |description|: Description of the route to be displayed. | |
32 // |is_local|: true if the route was created from this browser. | |
33 MediaRoute Create(const MediaSource& media_source, | |
34 const MediaSinkId& sink_id, | |
xhwang
2015/03/09 17:37:31
OOC, can this be a MediaSink instead of a MediaSin
Kevin M
2015/03/09 23:32:06
Done.
| |
35 const std::string& description, | |
36 bool is_local); | |
37 | |
38 private: | |
39 FRIEND_TEST_ALL_PREFIXES(MediaRouteFactoryTest, Create); | |
xhwang
2015/03/09 17:37:31
MediaRouteFactoryTest is not using any private met
Kevin M
2015/03/09 23:32:06
Done.
| |
40 friend struct DefaultSingletonTraits<MediaRouteFactory>; | |
41 | |
42 MediaRouteFactory(); | |
43 | |
44 // Gets the next route ID. | |
45 std::string NextRouteId(); | |
46 | |
47 // Monotonically increasing ID number. | |
48 uint64 next_id_; | |
49 | |
50 DISALLOW_COPY_AND_ASSIGN(MediaRouteFactory); | |
51 }; | |
52 | |
53 } // namespace media_router | |
54 | |
55 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTE_FACTORY_H_ | |
OLD | NEW |