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

Unified Diff: content/renderer/media/audio_message_filter.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « content/renderer/media/audio_input_message_filter.cc ('k') | content/renderer/media/audio_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698