Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: tracing/tracing/importer/find_input_expectations.html

Issue 2526613002: Return short-hand object literals to exportTo. (Closed)
Patch Set: manual fixes Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « tracing/tracing/importer/empty_importer.html ('k') | tracing/tracing/importer/find_load_expectations.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698