| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/range_utils.html"> | 8 <link rel="import" href="/tracing/base/range_utils.html"> |
| 9 <link rel="import" href="/tracing/extras/chrome/cc/input_latency_async_slice.htm
l"> | 9 <link rel="import" href="/tracing/extras/chrome/cc/input_latency_async_slice.htm
l"> |
| 10 <link rel="import" href="/tracing/importer/proto_expectation.html"> | 10 <link rel="import" href="/tracing/importer/proto_expectation.html"> |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 var irs = []; | 1246 var irs = []; |
| 1247 protoExpectations.forEach(function(protoExpectation) { | 1247 protoExpectations.forEach(function(protoExpectation) { |
| 1248 var ir = protoExpectation.createInteractionRecord(modelHelper.model); | 1248 var ir = protoExpectation.createInteractionRecord(modelHelper.model); |
| 1249 if (ir) | 1249 if (ir) |
| 1250 irs.push(ir); | 1250 irs.push(ir); |
| 1251 }); | 1251 }); |
| 1252 return irs; | 1252 return irs; |
| 1253 } | 1253 } |
| 1254 | 1254 |
| 1255 return { | 1255 return { |
| 1256 findInputExpectations: findInputExpectations, | 1256 findInputExpectations, |
| 1257 compareEvents: compareEvents, | 1257 compareEvents, |
| 1258 CSS_ANIMATION_TITLE: CSS_ANIMATION_TITLE, | 1258 CSS_ANIMATION_TITLE, |
| 1259 INITIATOR_TYPE: INITIATOR_TYPE | 1259 INITIATOR_TYPE, |
| 1260 }; | 1260 }; |
| 1261 }); | 1261 }); |
| 1262 </script> | 1262 </script> |
| OLD | NEW |