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

Side by Side Diff: media/cast/logging/log_deserializer.cc

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/cast/logging/log_deserializer.h" 5 #include "media/cast/logging/log_deserializer.h"
6 6
7 #include <stdint.h>
8
7 #include <utility> 9 #include <utility>
8 10
9 #include "base/big_endian.h" 11 #include "base/big_endian.h"
10 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
11 #include "third_party/zlib/zlib.h" 13 #include "third_party/zlib/zlib.h"
12 14
13 using media::cast::FrameEventMap; 15 using media::cast::FrameEventMap;
14 using media::cast::PacketEventMap; 16 using media::cast::PacketEventMap;
15 using media::cast::RtpTimestamp; 17 using media::cast::RtpTimestamp;
16 using media::cast::proto::AggregatedFrameEvent; 18 using media::cast::proto::AggregatedFrameEvent;
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 } else { 244 } else {
243 return DoDeserializeEvents(data, data_bytes, audio_log, video_log); 245 return DoDeserializeEvents(data, data_bytes, audio_log, video_log);
244 } 246 }
245 } 247 }
246 248
247 DeserializedLog::DeserializedLog() {} 249 DeserializedLog::DeserializedLog() {}
248 DeserializedLog::~DeserializedLog() {} 250 DeserializedLog::~DeserializedLog() {}
249 251
250 } // namespace cast 252 } // namespace cast
251 } // namespace media 253 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/logging/encoding_event_subscriber_unittest.cc ('k') | media/cast/logging/log_serializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698