| 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_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ | 5 #ifndef CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ |
| 6 #define CHROMECAST_MEDIA_BASE_MEDIA_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/scoped_ptr.h" |
| 10 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 11 | 12 |
| 12 namespace base { | 13 namespace base { |
| 13 class SingleThreadTaskRunner; | 14 class SingleThreadTaskRunner; |
| 14 class Thread; | 15 class Thread; |
| 15 } | 16 } |
| 16 | 17 |
| 17 namespace chromecast { | 18 namespace chromecast { |
| 18 namespace media { | 19 namespace media { |
| 19 | 20 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 33 | 34 |
| 34 scoped_ptr<base::Thread> thread_; | 35 scoped_ptr<base::Thread> thread_; |
| 35 | 36 |
| 36 DISALLOW_COPY_AND_ASSIGN(MediaMessageLoop); | 37 DISALLOW_COPY_AND_ASSIGN(MediaMessageLoop); |
| 37 }; | 38 }; |
| 38 | 39 |
| 39 } // namespace media | 40 } // namespace media |
| 40 } // namespace chromecast | 41 } // namespace chromecast |
| 41 | 42 |
| 42 #endif // CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ | 43 #endif // CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ |
| OLD | NEW |