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

Side by Side Diff: media/cast/logging/logging_defines.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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_LOGGING_LOGGING_DEFINES_H_ 5 #ifndef MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_
6 #define MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ 6 #define MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_
7 7
8 #include <stddef.h>
9 #include <stdint.h>
10
8 #include <map> 11 #include <map>
9 #include <string> 12 #include <string>
10 #include <vector> 13 #include <vector>
11 14
12 #include "base/time/time.h" 15 #include "base/time/time.h"
13 16
14 namespace media { 17 namespace media {
15 namespace cast { 18 namespace cast {
16 19
17 static const uint32_t kFrameIdUnknown = 0xFFFFFFFF; 20 static const uint32_t kFrameIdUnknown = 0xFFFFFFFF;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 // Time of event logged. 104 // Time of event logged.
102 base::TimeTicks timestamp; 105 base::TimeTicks timestamp;
103 CastLoggingEvent type; 106 CastLoggingEvent type;
104 EventMediaType media_type; 107 EventMediaType media_type;
105 }; 108 };
106 109
107 } // namespace cast 110 } // namespace cast
108 } // namespace media 111 } // namespace media
109 112
110 #endif // MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ 113 #endif // MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_
OLDNEW
« no previous file with comments | « media/cast/logging/log_serializer.cc ('k') | media/cast/logging/receiver_time_offset_estimator_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698