| OLD | NEW |
| 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_CAST_TRANSPORT_DEFINES_H_ | 5 #ifndef MEDIA_CAST_NET_CAST_TRANSPORT_DEFINES_H_ |
| 6 #define MEDIA_CAST_NET_CAST_TRANSPORT_DEFINES_H_ | 6 #define MEDIA_CAST_NET_CAST_TRANSPORT_DEFINES_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/macros.h" |
| 15 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 16 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 17 | 18 |
| 18 namespace media { | 19 namespace media { |
| 19 namespace cast { | 20 namespace cast { |
| 20 | 21 |
| 21 // Enums used to indicate transport readiness state. | 22 // Enums used to indicate transport readiness state. |
| 22 enum CastTransportStatus { | 23 enum CastTransportStatus { |
| 23 TRANSPORT_AUDIO_UNINITIALIZED = 0, | 24 TRANSPORT_AUDIO_UNINITIALIZED = 0, |
| 24 TRANSPORT_VIDEO_UNINITIALIZED, | 25 TRANSPORT_VIDEO_UNINITIALIZED, |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 79 |
| 79 uint32_t largest_frame_id_seen_; | 80 uint32_t largest_frame_id_seen_; |
| 80 | 81 |
| 81 DISALLOW_COPY_AND_ASSIGN(FrameIdWrapHelper); | 82 DISALLOW_COPY_AND_ASSIGN(FrameIdWrapHelper); |
| 82 }; | 83 }; |
| 83 | 84 |
| 84 } // namespace cast | 85 } // namespace cast |
| 85 } // namespace media | 86 } // namespace media |
| 86 | 87 |
| 87 #endif // MEDIA_CAST_NET_CAST_TRANSPORT_DEFINES_H_ | 88 #endif // MEDIA_CAST_NET_CAST_TRANSPORT_DEFINES_H_ |
| OLD | NEW |