OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 var media = {} |
| 6 |
| 7 var doNothing = function () {}; |
| 8 |
| 9 media.initialize = doNothing; |
| 10 media.addAudioStream = doNothing; |
| 11 media.cacheEntriesByKey = doNothing; |
| 12 media.onReceiveEverything = doNothing; |
| 13 media.onItemDeleted = doNothing; |
| 14 media.onRendererTerminated = doNothing; |
| 15 media.onNetUpdate = doNothing; |
| 16 media.onReceiveConstants = doNothing; |
| 17 media.onMediaEvent = doNothing; |
OLD | NEW |