OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BASE_MEDIA_LOG_EVENT_H_ | 5 #ifndef MEDIA_BASE_MEDIA_LOG_EVENT_H_ |
6 #define MEDIA_BASE_MEDIA_LOG_EVENT_H_ | 6 #define MEDIA_BASE_MEDIA_LOG_EVENT_H_ |
7 | 7 |
8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 | 10 |
(...skipping 52 matching lines...) Loading... |
63 // "height": <integral height of the video>. | 63 // "height": <integral height of the video>. |
64 VIDEO_SIZE_SET, | 64 VIDEO_SIZE_SET, |
65 | 65 |
66 // A property of the pipeline has been set by a filter. | 66 // A property of the pipeline has been set by a filter. |
67 // These take a single parameter based upon the name of the event and of | 67 // These take a single parameter based upon the name of the event and of |
68 // the appropriate type. e.g. DURATION_SET: "duration" of type TimeDelta. | 68 // the appropriate type. e.g. DURATION_SET: "duration" of type TimeDelta. |
69 DURATION_SET, | 69 DURATION_SET, |
70 TOTAL_BYTES_SET, | 70 TOTAL_BYTES_SET, |
71 NETWORK_ACTIVITY_SET, | 71 NETWORK_ACTIVITY_SET, |
72 | 72 |
73 // Audio/Video stream playback has ended. | 73 // Audio/Video/Text stream playback has ended. |
74 AUDIO_ENDED, | 74 AUDIO_ENDED, |
75 VIDEO_ENDED, | 75 VIDEO_ENDED, |
| 76 TEXT_ENDED, |
76 | 77 |
77 // The audio renderer has been disabled. | 78 // The audio renderer has been disabled. |
78 // params: none. | 79 // params: none. |
79 AUDIO_RENDERER_DISABLED, | 80 AUDIO_RENDERER_DISABLED, |
80 | 81 |
81 // The extents of the sliding buffer have changed. | 82 // The extents of the sliding buffer have changed. |
82 // params: "buffer_start": <first buffered byte>. | 83 // params: "buffer_start": <first buffered byte>. |
83 // "buffer_current": <current offset>. | 84 // "buffer_current": <current offset>. |
84 // "buffer_end": <last buffered byte>. | 85 // "buffer_end": <last buffered byte>. |
85 BUFFERED_EXTENTS_CHANGED, | 86 BUFFERED_EXTENTS_CHANGED, |
86 | 87 |
87 // Errors reported by Media Source Extensions code. | 88 // Errors reported by Media Source Extensions code. |
88 MEDIA_SOURCE_ERROR, | 89 MEDIA_SOURCE_ERROR, |
89 // params: "error": Error string describing the error detected. | 90 // params: "error": Error string describing the error detected. |
90 | 91 |
91 // A property has changed without any special event occurring. | 92 // A property has changed without any special event occurring. |
92 PROPERTY_CHANGE, | 93 PROPERTY_CHANGE, |
93 }; | 94 }; |
94 | 95 |
95 int32 id; | 96 int32 id; |
96 Type type; | 97 Type type; |
97 base::DictionaryValue params; | 98 base::DictionaryValue params; |
98 base::TimeTicks time; | 99 base::TimeTicks time; |
99 }; | 100 }; |
100 | 101 |
101 } // namespace media | 102 } // namespace media |
102 | 103 |
103 #endif // MEDIA_BASE_MEDIA_LOG_EVENT_H_ | 104 #endif // MEDIA_BASE_MEDIA_LOG_EVENT_H_ |
OLD | NEW |