Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / cc / constants.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="/tvcm.html">
8 <script>
9 'use strict';
10
11 tvcm.exportTo('cc', function() {
12   var constants = {};
13   constants.ACTIVE_TREE = 0;
14   constants.PENDING_TREE = 1;
15
16   constants.HIGH_PRIORITY_BIN = 0;
17   constants.LOW_PRIORITY_BIN = 1;
18
19   return {
20     constants: constants
21   };
22 });
23 </script>