Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 var media = {} | |
|
scherkus (not reviewing)
2013/07/19 01:58:49
copyright
Ty Overby
2013/07/19 17:48:00
Done.
| |
| 2 | |
| 3 var messagesReceived = 0; | |
| 4 var thunk = function (){ | |
| 5 messagesReceived += 1; | |
| 6 }; | |
| 7 | |
| 8 media.initialize = thunk; | |
|
scherkus (not reviewing)
2013/07/19 01:58:49
OOC do we need these to make things work w/ the em
Ty Overby
2013/07/19 17:48:00
It keeps 'method media.onMediaEvent' from being sp
| |
| 9 media.addAudioStream = thunk; | |
| 10 media.cacheEntriesByKey = thunk; | |
| 11 media.onReceiveEverything = thunk; | |
| 12 media.onItemDeleted = thunk; | |
| 13 media.onRendererTerminated = thunk; | |
| 14 media.onNetUpdate = thunk; | |
| 15 media.onReceiveConstants = thunk; | |
| 16 media.onMediaEvent = thunk; | |
| OLD | NEW |