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

Side by Side Diff: media/cast/net/rtp/rtp_packetizer.h

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
« no previous file with comments | « media/cast/net/rtp/rtp_packet_builder.h ('k') | media/cast/net/rtp/rtp_packetizer_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ 5 #ifndef MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_
6 #define MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ 6 #define MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_
7 7
8 #include <stddef.h>
9 #include <stdint.h>
10
8 #include <cmath> 11 #include <cmath>
9 #include <list> 12 #include <list>
10 #include <map> 13 #include <map>
11 14
12 #include "base/time/time.h" 15 #include "base/time/time.h"
13 #include "media/cast/net/rtp/packet_storage.h" 16 #include "media/cast/net/rtp/packet_storage.h"
14 17
15 namespace base { 18 namespace base {
16 class TickClock; 19 class TickClock;
17 } 20 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 uint16_t packet_id_; 70 uint16_t packet_id_;
68 71
69 size_t send_packet_count_; 72 size_t send_packet_count_;
70 size_t send_octet_count_; 73 size_t send_octet_count_;
71 }; 74 };
72 75
73 } // namespace cast 76 } // namespace cast
74 } // namespace media 77 } // namespace media
75 78
76 #endif // MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ 79 #endif // MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_
OLDNEW
« no previous file with comments | « media/cast/net/rtp/rtp_packet_builder.h ('k') | media/cast/net/rtp/rtp_packetizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698