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