1syntax = "proto2"; 2 3package gamequalification_proto; 4 5option java_package = "com.android.game.qualification.proto"; 6option java_outer_classname = "ResultDataProto"; 7 8message Event { 9 enum Type { 10 START_LOOP = 1; 11 APP_LAUNCH = 2; 12 } 13 14 optional Type type = 1; 15 optional int64 timestamp = 2; 16} 17 18message Result { 19 repeated Event events = 1; 20} 21