summaryrefslogtreecommitdiffstats
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/cast/logging/logging_raw.h b/media/cast/logging/logging_raw.h
index 191e5e1..4ac8d0f 100644
--- a/media/cast/logging/logging_raw.h
+++ b/media/cast/logging/logging_raw.h
@@ -51,7 +51,7 @@ class LoggingRaw : public base::NonThreadSafe,
uint32 frame_id,
uint16 packet_id,
uint16 max_packet_id,
- int size);
+ size_t size);
void InsertGenericEvent(CastLoggingEvent event, int value);
@@ -69,11 +69,11 @@ class LoggingRaw : public base::NonThreadSafe,
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);
};