aboutsummaryrefslogtreecommitdiff
path: root/dbus/biod/constants.proto
blob: d7266c03e4126a874bc88508452b386cb44b1ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

syntax = "proto2";

option optimize_for = LITE_RUNTIME;

package biod;

// Included in biod's EnrollScanDone signal.
enum ScanResult {
  SCAN_RESULT_SUCCESS = 0;
  SCAN_RESULT_PARTIAL = 1;
  SCAN_RESULT_INSUFFICIENT = 2;
  SCAN_RESULT_SENSOR_DIRTY = 3;
  SCAN_RESULT_TOO_SLOW = 4;
  SCAN_RESULT_TOO_FAST = 5;
  SCAN_RESULT_IMMOBILE = 6;
  SCAN_RESULT_MAX = 7;
}