1// Copyright 2017 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
5syntax = "proto2";
6
7option optimize_for = LITE_RUNTIME;
8
9package biod;
10
11import "constants.proto";
12
13// Included in biod's EnrollScanDone signal.
14message EnrollScanDone {
15  optional ScanResult scan_result = 1;
16  optional bool done = 2;
17  optional int32 percent_complete = 3;
18}
19