| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |