Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: chromecast/media/audio/cast_audio_output_stream.h

Issue 2101303004: Pass delay and timestamp to AudioSourceCallback::OnMoreData. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix Mac CQ errors. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chromecast/media/audio/cast_audio_mixer_unittest.cc ('k') | chromecast/media/audio/cast_audio_output_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698