summaryrefslogtreecommitdiff
path: root/media/cast/logging/logging_raw.h
diff options
context:
space:
mode:
Diffstat (limited to 'media/cast/logging/logging_raw.h')
-rw-r--r--media/cast/logging/logging_raw.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/media/cast/logging/logging_raw.h b/media/cast/logging/logging_raw.h
index 91de12aaaa..4ac8d0fb7a 100644
--- a/media/cast/logging/logging_raw.h
+++ b/media/cast/logging/logging_raw.h
@@ -31,27 +31,27 @@ class LoggingRaw : public base::NonThreadSafe,
// Frame events can be inserted with different parameters.
void InsertFrameEvent(CastLoggingEvent event,
uint32 rtp_timestamp,
- uint8 frame_id);
+ uint32 frame_id);
// Size - Inserting the size implies that this is an encoded frame.
void InsertFrameEventWithSize(CastLoggingEvent event,
uint32 rtp_timestamp,
- uint8 frame_id,
+ uint32 frame_id,
int frame_size);
// Render/playout delay
void InsertFrameEventWithDelay(CastLoggingEvent event,
uint32 rtp_timestamp,
- uint8 frame_id,
+ uint32 frame_id,
base::TimeDelta delay);
// Insert a packet event.
void InsertPacketEvent(CastLoggingEvent event,
uint32 rtp_timestamp,
- uint8 frame_id,
+ uint32 frame_id,
uint16 packet_id,
uint16 max_packet_id,
- int size);
+ size_t size);
void InsertGenericEvent(CastLoggingEvent event, int value);
@@ -66,14 +66,14 @@ class LoggingRaw : public base::NonThreadSafe,
private:
void InsertBaseFrameEvent(CastLoggingEvent event,
- uint8 frame_id,
+ uint32 frame_id,
uint32 rtp_timestamp);
- base::WeakPtrFactory<LoggingRaw> weak_factory_;
base::TickClock* const clock_; // Not owned by this class.
FrameRawMap frame_map_;
PacketRawMap packet_map_;
GenericRawMap generic_map_;
+ base::WeakPtrFactory<LoggingRaw> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(LoggingRaw);
};