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

Side by Side Diff: tracing/tracing/metrics/v8/gc_metric.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 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 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.html"> 8 <link rel="import" href="/tracing/base/range.html">
9 <link rel="import" href="/tracing/base/unit.html"> 9 <link rel="import" href="/tracing/base/unit.html">
10 <link rel="import" href="/tracing/metrics/metric_registry.html"> 10 <link rel="import" href="/tracing/metrics/metric_registry.html">
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 }); 324 });
325 var hist = new tr.v.Histogram( 325 var hist = new tr.v.Histogram(
326 'v8-execute-mutator-utilization_min', percentage_biggerIsBetter); 326 'v8-execute-mutator-utilization_min', percentage_biggerIsBetter);
327 hist.addSample(mutatorUtilization.min); 327 hist.addSample(mutatorUtilization.min);
328 values.addHistogram(hist); 328 values.addHistogram(hist);
329 } 329 }
330 ); 330 );
331 } 331 }
332 332
333 return { 333 return {
334 gcMetric: gcMetric, 334 gcMetric,
335 WINDOW_SIZE_MS: WINDOW_SIZE_MS // For testing purposes only. 335 WINDOW_SIZE_MS, // For testing purposes only.
336 }; 336 };
337 }); 337 });
338 </script> 338 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/metrics/v8/execution_metric.html ('k') | tracing/tracing/metrics/v8/runtime_stats_metric.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698