Chromium Code Reviews| 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_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ |
| 6 #define CHROMECAST_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ | 6 #define CHROMECAST_BROWSER_MEDIA_CMA_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 MessageLoopProxy; | 13 class SingleThreadTaskRunner; |
|
lcwu1
2015/05/19 01:45:37
Redundant declaration.
gunsch
2015/05/19 03:01:57
Done.
| |
| 14 class SingleThreadTaskRunner; | 14 class SingleThreadTaskRunner; |
| 15 class Thread; | 15 class Thread; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace chromecast { | 18 namespace chromecast { |
| 19 namespace media { | 19 namespace media { |
| 20 | 20 |
| 21 class CmaMessageLoop { | 21 class CmaMessageLoop { |
| 22 public: | 22 public: |
| 23 // TODO(gunsch): clean up references to deprecated Message*Loop*Proxy. | |
| 24 static scoped_refptr<base::MessageLoopProxy> GetMessageLoopProxy(); | |
| 25 static scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner(); | 23 static scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner(); |
| 26 | 24 |
| 27 private: | 25 private: |
| 28 friend struct DefaultSingletonTraits<CmaMessageLoop>; | 26 friend struct DefaultSingletonTraits<CmaMessageLoop>; |
| 29 friend class Singleton<CmaMessageLoop>; | 27 friend class Singleton<CmaMessageLoop>; |
| 30 | 28 |
| 31 static CmaMessageLoop* GetInstance(); | 29 static CmaMessageLoop* GetInstance(); |
| 32 | 30 |
| 33 CmaMessageLoop(); | 31 CmaMessageLoop(); |
| 34 ~CmaMessageLoop(); | 32 ~CmaMessageLoop(); |
| 35 | 33 |
| 36 scoped_ptr<base::Thread> thread_; | 34 scoped_ptr<base::Thread> thread_; |
| 37 | 35 |
| 38 DISALLOW_COPY_AND_ASSIGN(CmaMessageLoop); | 36 DISALLOW_COPY_AND_ASSIGN(CmaMessageLoop); |
| 39 }; | 37 }; |
| 40 | 38 |
| 41 } // namespace media | 39 } // namespace media |
| 42 } // namespace chromecast | 40 } // namespace chromecast |
| 43 | 41 |
| 44 #endif // CHROMECAST_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ | 42 #endif // CHROMECAST_BROWSER_MEDIA_CMA_MESSAGE_LOOP_H_ |
| OLD | NEW |