Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Side by Side Diff: media/base/media_event_types.h

Issue 7480032: Plumb media data from renderers up to MediaInternals in the browser process. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Much cleanup and making MediaLog thread safe. Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698