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

Unified Diff: media/cast/sender/congestion_control.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/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

Powered by Google App Engine
This is Rietveld 408576698