• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto2";
2
3package service.proto;
4
5message FastPairStrings {
6  // Required for initial pairing, used when there is a Google account on the
7  // device
8  optional string tap_to_pair_with_account = 1;
9
10  // Required for initial pairing, used when there is no Google account on the
11  // device
12  optional string tap_to_pair_without_account = 2;
13
14  // Description for initial pairing
15  optional string initial_pairing_description = 3;
16
17  // Description after successfully paired the device with companion app
18  // installed
19  optional string pairing_finished_companion_app_installed = 4;
20
21  // Description after successfully paired the device with companion app not
22  // installed
23  optional string pairing_finished_companion_app_not_installed = 5;
24
25  // Description when phone found the device that associates with user's account
26  // before remind user to pair with new device.
27  optional string subsequent_pairing_description = 6;
28
29  // Description when fast pair finds the user paired with device manually
30  // reminds user to opt the device into cloud.
31  optional string retroactive_pairing_description = 7;
32
33  // Description when user click setup device while device is still pairing
34  optional string wait_app_launch_description = 8;
35
36  // Description when user fail to pair with device
37  optional string pairing_fail_description = 9;
38
39  reserved 10, 11, 12, 13, 14,15, 16, 17, 18;
40}
41