You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
528 B
22 lines
528 B
// 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;
|
|
}
|