| 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_LOGGING_ENCODING_EVENT_SUBSCRIBER_H_ | 5 #ifndef MEDIA_CAST_LOGGING_ENCODING_EVENT_SUBSCRIBER_H_ |
| 6 #define MEDIA_CAST_LOGGING_ENCODING_EVENT_SUBSCRIBER_H_ | 6 #define MEDIA_CAST_LOGGING_ENCODING_EVENT_SUBSCRIBER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 | 11 |
| 10 #include "base/macros.h" | 12 #include "base/macros.h" |
| 11 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 12 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 13 #include "media/cast/logging/logging_defines.h" | 15 #include "media/cast/logging/logging_defines.h" |
| 14 #include "media/cast/logging/proto/raw_events.pb.h" | 16 #include "media/cast/logging/proto/raw_events.pb.h" |
| 15 #include "media/cast/logging/raw_event_subscriber.h" | 17 #include "media/cast/logging/raw_event_subscriber.h" |
| 16 | 18 |
| 17 namespace media { | 19 namespace media { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 // Set to RTP timestamp of first event encountered after a |Reset()|. | 116 // Set to RTP timestamp of first event encountered after a |Reset()|. |
| 115 RtpTimestamp first_rtp_timestamp_; | 117 RtpTimestamp first_rtp_timestamp_; |
| 116 | 118 |
| 117 DISALLOW_COPY_AND_ASSIGN(EncodingEventSubscriber); | 119 DISALLOW_COPY_AND_ASSIGN(EncodingEventSubscriber); |
| 118 }; | 120 }; |
| 119 | 121 |
| 120 } // namespace cast | 122 } // namespace cast |
| 121 } // namespace media | 123 } // namespace media |
| 122 | 124 |
| 123 #endif // MEDIA_CAST_LOGGING_ENCODING_EVENT_SUBSCRIBER_H_ | 125 #endif // MEDIA_CAST_LOGGING_ENCODING_EVENT_SUBSCRIBER_H_ |
| OLD | NEW |