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

Unified Diff: media/cast/cast_config.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 side-by-side diff with in-line comments
Download patch
Index: media/cast/cast_config.h
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h
index 4ebef67ef3bd9e2ee869209a8ffc5c820e4d1d60..091ee2570426b381214798c4bac470c6ac99c1bc 100644
--- a/media/cast/cast_config.h
+++ b/media/cast/cast_config.h
@@ -7,7 +7,6 @@
#include <string>
-#include "base/basictypes.h"
#include "base/callback.h"
#include "base/memory/ref_counted.h"
#include "base/memory/shared_memory.h"
@@ -60,10 +59,10 @@ struct AudioSenderConfig {
~AudioSenderConfig();
// Identifier referring to the sender, used by the receiver.
- uint32 ssrc;
+ uint32_t ssrc;
// The receiver's SSRC identifier.
- uint32 receiver_ssrc;
+ uint32_t receiver_ssrc;
// The total amount of time between a frame's capture/recording on the sender
// and its playback on the receiver (i.e., shown to a user). This should be
@@ -98,10 +97,10 @@ struct VideoSenderConfig {
~VideoSenderConfig();
// Identifier referring to the sender, used by the receiver.
- uint32 ssrc;
+ uint32_t ssrc;
// The receiver's SSRC identifier.
- uint32 receiver_ssrc;
+ uint32_t receiver_ssrc;
// The total amount of time between a frame's capture/recording on the sender
// and its playback on the receiver (i.e., shown to a user). This should be
@@ -154,10 +153,10 @@ struct FrameReceiverConfig {
~FrameReceiverConfig();
// The receiver's SSRC identifier.
- uint32 receiver_ssrc;
+ uint32_t receiver_ssrc;
// The sender's SSRC identifier.
- uint32 sender_ssrc;
+ uint32_t sender_ssrc;
// The total amount of time between a frame's capture/recording on the sender
// and its playback on the receiver (i.e., shown to a user). This is fixed as

Powered by Google App Engine
This is Rietveld 408576698