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
7base.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});
19