1// Copyright (c) 2013 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('tracing', function() {
8
9  var mouseModeConstants = {};
10  mouseModeConstants.MOUSE_MODE_SELECTION = 1;
11  mouseModeConstants.MOUSE_MODE_PANSCAN = 2;
12  mouseModeConstants.MOUSE_MODE_ZOOM = 3;
13
14  return {
15    mouseModeConstants: mouseModeConstants
16  };
17});
18