Index: media/cast/sender/congestion_control.h |
diff --git a/media/cast/sender/congestion_control.h b/media/cast/sender/congestion_control.h |
index 8e1713409435754b8020c1c24bd0166b9d891122..3951f999295e2a462ea31f02e9c77b3dfb07d8c5 100644 |
--- a/media/cast/sender/congestion_control.h |
+++ b/media/cast/sender/congestion_control.h |
@@ -5,7 +5,6 @@ |
#ifndef MEDIA_CAST_CONGESTION_CONTROL_CONGESTION_CONTROL_H_ |
#define MEDIA_CAST_CONGESTION_CONTROL_CONGESTION_CONTROL_H_ |
-#include "base/basictypes.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/time/tick_clock.h" |
#include "base/time/time.h" |
@@ -24,12 +23,12 @@ class CongestionControl { |
virtual void UpdateTargetPlayoutDelay(base::TimeDelta delay) = 0; |
// Called when an encoded frame is enqueued for transport. |
- virtual void SendFrameToTransport(uint32 frame_id, |
+ virtual void SendFrameToTransport(uint32_t frame_id, |
size_t frame_size_in_bits, |
base::TimeTicks when) = 0; |
// Called when we receive an ACK for a frame. |
- virtual void AckFrame(uint32 frame_id, base::TimeTicks when) = 0; |
+ virtual void AckFrame(uint32_t frame_id, base::TimeTicks when) = 0; |
// Returns the bitrate we should use for the next frame. |soft_max_bitrate| |
// is a soft upper-bound applied to the computed target bitrate before the |