Home | History | Annotate | Download | only in logging
      1 syntax = "proto2";
      2 
      3 package com.android.dialer.logging;
      4 option java_package = "com.android.dialer.logging";
      5 option java_multiple_files = true;
      6 option optimize_for = LITE_RUNTIME;
      7 
      8 message ReportingLocation {
      9   // Spam reporting location
     10   enum Type {
     11     UNKNOWN_REPORTING_LOCATION = 0;
     12     CALL_LOG_HISTORY = 1;
     13     FEEDBACK_PROMPT = 2;
     14   }
     15 }
     16