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
3 // found in the LICENSE file.
5 #ifndef MEDIA_BASE_MEDIA_LOG_EVENT_H_
6 #define MEDIA_BASE_MEDIA_LOG_EVENT_H_
8 #include "base/time/time.h"
9 #include "base/values.h"
13 struct MediaLogEvent
{
16 MediaLogEvent(const MediaLogEvent
& event
) {
20 MediaLogEvent
& operator=(const MediaLogEvent
& event
) {
23 scoped_ptr
<base::DictionaryValue
> event_copy(event
.params
.DeepCopy());
24 params
.Swap(event_copy
.get());
30 // A WebMediaPlayer is being created or destroyed.
32 WEBMEDIAPLAYER_CREATED
,
33 WEBMEDIAPLAYER_DESTROYED
,
35 // A Pipeline is being created or destroyed.
40 // A media player is loading a resource.
41 // params: "url": <URL of the resource>.
44 // A media player has started seeking.
45 // params: "seek_target": <number of seconds to which to seek>.
48 // A media player has been told to play or pause.
53 // The state of Pipeline has changed.
54 // params: "pipeline_state": <string name of the state>.
55 PIPELINE_STATE_CHANGED
,
57 // An error has occurred in the pipeline.
58 // params: "pipeline_error": <string name of the error>.
61 // The size of the video has been determined.
62 // params: "width": <integral width of the video>.
63 // "height": <integral height of the video>.
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
68 // the appropriate type. e.g. DURATION_SET: "duration" of type TimeDelta.
73 // Audio/Video stream playback has ended.
76 // Text stream playback has ended.
79 // The extents of the sliding buffer have changed.
80 // params: "buffer_start": <first buffered byte>.
81 // "buffer_current": <current offset>.
82 // "buffer_end": <last buffered byte>.
83 BUFFERED_EXTENTS_CHANGED
,
85 // Errors reported by Media Source Extensions code.
87 // params: "error": Error string describing the error detected.
89 // A property has changed without any special event occurring.
92 TYPE_LAST
= PROPERTY_CHANGE
97 base::DictionaryValue params
;
103 #endif // MEDIA_BASE_MEDIA_LOG_EVENT_H_