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

Side by Side Diff: media/audio/audio_output_device.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Audio rendering unit utilizing audio output stream provided by browser 5 // Audio rendering unit utilizing audio output stream provided by browser
6 // process through IPC. 6 // process through IPC.
7 // 7 //
8 // Relationship of classes. 8 // Relationship of classes.
9 // 9 //
10 // AudioOutputController AudioOutputDevice 10 // AudioOutputController AudioOutputDevice
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // memory. 57 // memory.
58 // 58 //
59 // Implementation notes: 59 // Implementation notes:
60 // - The user must call Stop() before deleting the class instance. 60 // - The user must call Stop() before deleting the class instance.
61 61
62 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_DEVICE_H_ 62 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_DEVICE_H_
63 #define MEDIA_AUDIO_AUDIO_OUTPUT_DEVICE_H_ 63 #define MEDIA_AUDIO_AUDIO_OUTPUT_DEVICE_H_
64 64
65 #include <string> 65 #include <string>
66 66
67 #include "base/basictypes.h"
68 #include "base/bind.h" 67 #include "base/bind.h"
69 #include "base/memory/scoped_ptr.h" 68 #include "base/memory/scoped_ptr.h"
70 #include "base/memory/shared_memory.h" 69 #include "base/memory/shared_memory.h"
71 #include "base/synchronization/waitable_event.h" 70 #include "base/synchronization/waitable_event.h"
72 #include "media/audio/audio_device_thread.h" 71 #include "media/audio/audio_device_thread.h"
73 #include "media/audio/audio_output_ipc.h" 72 #include "media/audio/audio_output_ipc.h"
74 #include "media/audio/audio_parameters.h" 73 #include "media/audio/audio_parameters.h"
75 #include "media/audio/scoped_task_runner_observer.h" 74 #include "media/audio/scoped_task_runner_observer.h"
76 #include "media/base/audio_renderer_sink.h" 75 #include "media/base/audio_renderer_sink.h"
77 #include "media/base/media_export.h" 76 #include "media/base/media_export.h"
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 base::WaitableEvent did_receive_auth_; 204 base::WaitableEvent did_receive_auth_;
206 media::AudioParameters output_params_; 205 media::AudioParameters output_params_;
207 OutputDeviceStatus device_status_; 206 OutputDeviceStatus device_status_;
208 207
209 DISALLOW_COPY_AND_ASSIGN(AudioOutputDevice); 208 DISALLOW_COPY_AND_ASSIGN(AudioOutputDevice);
210 }; 209 };
211 210
212 } // namespace media 211 } // namespace media
213 212
214 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DEVICE_H_ 213 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DEVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698