| 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 // A set of parameter names. An entry of 'abc' allows metrics to specify | 8 // A set of parameter names. An entry of 'abc' allows metrics to specify |
| 9 // events with specific values of 'abc'. | 9 // events with specific values of 'abc'. |
| 10 var metricProperties = { | 10 var metricProperties = { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 this.addEventInternal(event, type); | 109 this.addEventInternal(event, type); |
| 110 } | 110 } |
| 111 } | 111 } |
| 112 }, | 112 }, |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 return { | 115 return { |
| 116 Metrics: Metrics, | 116 Metrics: Metrics, |
| 117 }; | 117 }; |
| 118 }); | 118 }); |
| OLD | NEW |