Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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_AUDIO_CAST_AUDIO_OUTPUT_STREAM_H_ | 5 #ifndef CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_OUTPUT_STREAM_H_ |
| 6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_OUTPUT_STREAM_H_ | 6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_OUTPUT_STREAM_H_ |
| 7 | 7 |
| 8 #include <memory> | |
|
alokp
2016/09/30 00:12:21
is this due to restructuring of any header that th
jameswest
2016/09/30 00:30:16
This is just fixing a lint error for cast_audio_ou
| |
| 9 | |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 10 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 11 #include "media/audio/audio_io.h" | 13 #include "media/audio/audio_io.h" |
| 12 #include "media/base/audio_parameters.h" | 14 #include "media/base/audio_parameters.h" |
| 13 #include "media/base/audio_timestamp_helper.h" | 15 #include "media/base/audio_timestamp_helper.h" |
| 14 | 16 |
| 15 namespace chromecast { | 17 namespace chromecast { |
| 16 namespace media { | 18 namespace media { |
| 17 | 19 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 | 55 |
| 54 base::WeakPtrFactory<CastAudioOutputStream> weak_factory_; | 56 base::WeakPtrFactory<CastAudioOutputStream> weak_factory_; |
| 55 | 57 |
| 56 DISALLOW_COPY_AND_ASSIGN(CastAudioOutputStream); | 58 DISALLOW_COPY_AND_ASSIGN(CastAudioOutputStream); |
| 57 }; | 59 }; |
| 58 | 60 |
| 59 } // namespace media | 61 } // namespace media |
| 60 } // namespace chromecast | 62 } // namespace chromecast |
| 61 | 63 |
| 62 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_OUTPUT_STREAM_H_ | 64 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_OUTPUT_STREAM_H_ |
| OLD | NEW |