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

Side by Side Diff: media/cast/net/rtcp/rtcp.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 4 years, 12 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 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 // This class maintains a bi-directional RTCP connection with a remote 5 // This class maintains a bi-directional RTCP connection with a remote
6 // peer. 6 // peer.
7 7
8 #ifndef MEDIA_CAST_RTCP_RTCP_H_ 8 #ifndef MEDIA_CAST_RTCP_RTCP_H_
9 #define MEDIA_CAST_RTCP_RTCP_H_ 9 #define MEDIA_CAST_RTCP_RTCP_H_
10 10
11 #include <stddef.h>
11 #include <stdint.h> 12 #include <stdint.h>
12 13
13 #include <map> 14 #include <map>
14 #include <queue> 15 #include <queue>
15 #include <string> 16 #include <string>
16 17
17 #include "base/macros.h" 18 #include "base/macros.h"
18 #include "base/memory/scoped_ptr.h" 19 #include "base/memory/scoped_ptr.h"
19 #include "base/memory/weak_ptr.h" 20 #include "base/memory/weak_ptr.h"
20 #include "base/time/tick_clock.h" 21 #include "base/time/tick_clock.h"
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 base::hash_set<ReceiverEventKey> receiver_event_key_set_; 176 base::hash_set<ReceiverEventKey> receiver_event_key_set_;
176 std::queue<ReceiverEventKey> receiver_event_key_queue_; 177 std::queue<ReceiverEventKey> receiver_event_key_queue_;
177 178
178 DISALLOW_COPY_AND_ASSIGN(Rtcp); 179 DISALLOW_COPY_AND_ASSIGN(Rtcp);
179 }; 180 };
180 181
181 } // namespace cast 182 } // namespace cast
182 } // namespace media 183 } // namespace media
183 184
184 #endif // MEDIA_CAST_RTCP_RTCP_H_ 185 #endif // MEDIA_CAST_RTCP_RTCP_H_
OLDNEW
« no previous file with comments | « media/cast/net/rtcp/receiver_rtcp_event_subscriber_unittest.cc ('k') | media/cast/net/rtcp/rtcp_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698