OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ | 5 #ifndef CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ |
6 #define CHROMECAST_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ | 6 #define CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
11 | 11 |
12 namespace base { | 12 namespace base { |
13 class SingleThreadTaskRunner; | 13 class SingleThreadTaskRunner; |
14 class Thread; | 14 class Thread; |
15 } | 15 } |
16 | 16 |
17 namespace chromecast { | 17 namespace chromecast { |
18 namespace media { | 18 namespace media { |
19 | 19 |
20 class CmaMessageLoop { | 20 class MediaMessageLoop { |
21 public: | 21 public: |
22 static scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner(); | 22 static scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner(); |
23 | 23 |
24 private: | 24 private: |
25 friend struct DefaultSingletonTraits<CmaMessageLoop>; | 25 friend struct DefaultSingletonTraits<MediaMessageLoop>; |
26 friend class Singleton<CmaMessageLoop>; | 26 friend class Singleton<MediaMessageLoop>; |
27 | 27 |
28 static CmaMessageLoop* GetInstance(); | 28 static MediaMessageLoop* GetInstance(); |
29 | 29 |
30 CmaMessageLoop(); | 30 MediaMessageLoop(); |
31 ~CmaMessageLoop(); | 31 ~MediaMessageLoop(); |
32 | 32 |
33 scoped_ptr<base::Thread> thread_; | 33 scoped_ptr<base::Thread> thread_; |
34 | 34 |
35 DISALLOW_COPY_AND_ASSIGN(CmaMessageLoop); | 35 DISALLOW_COPY_AND_ASSIGN(MediaMessageLoop); |
36 }; | 36 }; |
37 | 37 |
38 } // namespace media | 38 } // namespace media |
39 } // namespace chromecast | 39 } // namespace chromecast |
40 | 40 |
41 #endif // CHROMECAST_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ | 41 #endif // CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ |
OLD | NEW |