Re-enable index-basics-workers test to see if still times
[chromium-blink-merge.git] / tools / cc-frame-viewer / src / model / constants.js
blobc2c99133a8bb3b32fe07fc32362f92f979b4fe75
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';
7 base.exportTo('ccfv.model', function() {
8   var constants = {};
9   constants.ACTIVE_TREE = 0;
10   constants.PENDING_TREE = 1;
12   constants.HIGH_PRIORITY_BIN = 0;
13   constants.LOW_PRIORITY_BIN = 1;
15   return {
16     constants: constants,
17   }
18 });