| Index: content/renderer/media/audio_message_filter.h
|
| diff --git a/content/renderer/media/audio_message_filter.h b/content/renderer/media/audio_message_filter.h
|
| index 93ffc160edf766268d98cced566c7d39b297c404..dcdc7cd361a1171a540add9ad0d5a0ebce740fbf 100644
|
| --- a/content/renderer/media/audio_message_filter.h
|
| +++ b/content/renderer/media/audio_message_filter.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef CONTENT_RENDERER_MEDIA_AUDIO_MESSAGE_FILTER_H_
|
| #define CONTENT_RENDERER_MEDIA_AUDIO_MESSAGE_FILTER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/gtest_prod_util.h"
|
| #include "base/id_map.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/shared_memory.h"
|
| #include "base/sync_socket.h"
|
| @@ -73,9 +76,10 @@ class CONTENT_EXPORT AudioMessageFilter : public IPC::MessageFilter {
|
| const media::AudioParameters& output_params);
|
|
|
| // Received when browser process has created an audio output stream.
|
| - void OnStreamCreated(int stream_id, base::SharedMemoryHandle handle,
|
| + void OnStreamCreated(int stream_id,
|
| + base::SharedMemoryHandle handle,
|
| base::SyncSocket::TransitDescriptor socket_descriptor,
|
| - uint32 length);
|
| + uint32_t length);
|
|
|
| // Received when internal state of browser process' audio output device has
|
| // changed.
|
|
|