| 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 * The width and height of a bar drawn on a file canvas in pixels. | 9 * The width and height of a bar drawn on a file canvas in pixels. |
| 10 */ | 10 */ |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 return { | 66 return { |
| 67 BAR_WIDTH: BAR_WIDTH, | 67 BAR_WIDTH: BAR_WIDTH, |
| 68 BAR_HEIGHT: BAR_HEIGHT, | 68 BAR_HEIGHT: BAR_HEIGHT, |
| 69 drawLine: drawLine, | 69 drawLine: drawLine, |
| 70 makeElement: makeElement, | 70 makeElement: makeElement, |
| 71 createDetailsLi: createDetailsLi, | 71 createDetailsLi: createDetailsLi, |
| 72 appendDictionaryToTable: appendDictionaryToTable | 72 appendDictionaryToTable: appendDictionaryToTable |
| 73 }; | 73 }; |
| 74 }); | 74 }); |
| OLD | NEW |