| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 cr.define('media', function() { | 5 cr.define('media', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * This class inherits from <li> and is designed to store and display | 9 * This class inherits from <li> and is designed to store and display |
| 10 * information about an open media player. | 10 * information about an open media player. |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 // Draw cache writes. | 145 // Draw cache writes. |
| 146 this.cacheWritesEntry_.hidden = false; | 146 this.cacheWritesEntry_.hidden = false; |
| 147 cacheEntry.drawCacheWritesToCanvas(this.cacheWritesCanvas_); | 147 cacheEntry.drawCacheWritesToCanvas(this.cacheWritesCanvas_); |
| 148 }, | 148 }, |
| 149 }; | 149 }; |
| 150 | 150 |
| 151 return { | 151 return { |
| 152 MediaPlayer: MediaPlayer | 152 MediaPlayer: MediaPlayer |
| 153 }; | 153 }; |
| 154 }); | 154 }); |
| OLD | NEW |