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 represents a file cached by net. | 9 * This class represents a file cached by net. |
10 */ | 10 */ |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 var result = document.createElement('li'); | 228 var result = document.createElement('li'); |
229 result.appendChild(this.details_); | 229 result.appendChild(this.details_); |
230 return result; | 230 return result; |
231 } | 231 } |
232 }; | 232 }; |
233 | 233 |
234 return { | 234 return { |
235 CacheEntry: CacheEntry | 235 CacheEntry: CacheEntry |
236 }; | 236 }; |
237 }); | 237 }); |
OLD | NEW |