Upstream version 9.37.197.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / cc / constants.js
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 'use strict';
6
7 tvcm.exportTo('cc', function() {
8   var constants = {};
9   constants.ACTIVE_TREE = 0;
10   constants.PENDING_TREE = 1;
11
12   constants.HIGH_PRIORITY_BIN = 0;
13   constants.LOW_PRIORITY_BIN = 1;
14
15   return {
16     constants: constants
17   };
18 });