OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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. | |
4 | |
5 // A list of media events. This file is included by media_log.h multiple times, | |
jam
2011/07/29 16:08:55
given that there are 5 entries, and all you want i
Scott Franklin
2011/07/29 22:30:25
Sure, I'll fill it in manually. It can always be s
| |
6 // hence no header guards. DO NOT include elsewhere. | |
7 | |
8 // A media player has been created or destroyed. | |
9 // Params: none. | |
10 EVENT(CREATED) | |
11 EVENT(DESTROYED) | |
12 | |
13 // A media player is loading a resource. | |
14 // Params: | |
15 // "url": <URL of the resource> | |
16 EVENT(LOAD) | |
17 | |
18 // A media player started playing. | |
19 // Params: none. | |
20 EVENT(PLAY) | |
21 | |
22 // A media player paused playback. | |
23 // Params: none. | |
24 EVENT(PAUSE) | |
OLD | NEW |