Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / tracing / analysis / util.html
1 <!DOCTYPE html>
2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <link rel="import" href="/base.html">
8 <script>
9 'use strict';
10
11 /**
12  * @fileoverview Helper functions for use in selection_analysis files.
13  */
14 tv.exportTo('tracing.analysis', function() {
15   function tsRound(ts) {
16     return Math.round(ts * 1000.0) / 1000.0;
17   }
18
19   return {
20     tsRound: tsRound
21   };
22 });
23 </script>