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

Unified Diff: media/cast/logging/log_serializer.h

Issue 241833002: Cast: Limit number of events/packets in EncodingEventSubscriber protos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 months 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/logging/log_serializer.h
diff --git a/media/cast/logging/log_serializer.h b/media/cast/logging/log_serializer.h
index 136932f65ff1cf936e4bbdf6b9fa9e56c3501244..8aff54fc95d48595aec5a5c55e96bc98d4c4a8b5 100644
--- a/media/cast/logging/log_serializer.h
+++ b/media/cast/logging/log_serializer.h
@@ -7,7 +7,6 @@
#include <string>
-#include "base/memory/scoped_ptr.h"
#include "media/cast/logging/encoding_event_subscriber.h"
namespace media {
@@ -25,8 +24,8 @@ namespace cast {
//
// See .cc file for format specification.
bool SerializeEvents(const media::cast::proto::LogMetadata& log_metadata,
- const FrameEventMap& frame_events,
- const PacketEventMap& packet_events,
+ const FrameEventList& frame_events,
+ const PacketEventList& packet_events,
bool compress,
int max_output_bytes,
char* output,

Powered by Google App Engine
This is Rietveld 408576698