1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/GeckoHalDefines.java Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*- 1.5 + * This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +package org.mozilla.gecko; 1.10 + 1.11 +public class GeckoHalDefines 1.12 +{ 1.13 + /* 1.14 + * Keep these values consistent with |SensorType| in Hal.h 1.15 + */ 1.16 + public static final int SENSOR_ORIENTATION = 0; 1.17 + public static final int SENSOR_ACCELERATION = 1; 1.18 + public static final int SENSOR_PROXIMITY = 2; 1.19 + public static final int SENSOR_LINEAR_ACCELERATION = 3; 1.20 + public static final int SENSOR_GYROSCOPE = 4; 1.21 + public static final int SENSOR_LIGHT = 5; 1.22 + 1.23 + public static final int SENSOR_ACCURACY_UNKNOWN = -1; 1.24 + public static final int SENSOR_ACCURACY_UNRELIABLE = 0; 1.25 + public static final int SENSOR_ACCURACY_LOW = 1; 1.26 + public static final int SENSOR_ACCURACY_MED = 2; 1.27 + public static final int SENSOR_ACCURACY_HIGH = 3; 1.28 +};