Fix 4 ProtobufTransformer findings:
* Remove dead proto options (4 times)
* Remove dead options from proto files that are no longer used.* TGP was not run because these changes should be safe.
* To opt-out of these cls, see go/protobuf-transformer#opt-out.
See go/protobuf-cleanup-lsc for more information on why you've received this change and why it is important.
This CL looks good? Just LGTM and Approve it!
This CL doesn’t look good? This is what you can do:
* Revert this CL, by replying "REVERT: <provide reason>"
* File a bug under go/protobuf-transformer-issue for category ProtobufTransformer if there's an issue with the CL content.
* File a bug under go/rosie-bug if there's an issue with how the CL was managed.
* For all other issues such as the formatting of the CL, please file a bug under
go/clrobot-bug.
* Revert this CL and not get a CL that cleans up these paths in the future by
replying "BLOCKLIST: <provide reason>". This is not reversible! We recommend to
opt out the respective paths in your CL Robot configuration instead:
go/clrobot-opt-out.
This CL was generated by CL Robot - a tool that cleans up code findings
(go/clrobot). The affected code paths have been enabled for CL Robot in //depot/google3/METADATA by
following go/clrobot#how-to-opt-in. Anything wrong with the signup? File a bug
at go/clrobot-bug.
#codehealth
Tested:
Local presubmit tests passed.
PiperOrigin-RevId: 684689511
diff --git a/quiche/blind_sign_auth/proto/get_initial_data.proto b/quiche/blind_sign_auth/proto/get_initial_data.proto
index 7dece62..9eda862 100644
--- a/quiche/blind_sign_auth/proto/get_initial_data.proto
+++ b/quiche/blind_sign_auth/proto/get_initial_data.proto
@@ -37,9 +37,11 @@
enum LocationGranularity {
UNKNOWN = 0;
COUNTRY = 1;
+
// Geographic area with population greater than 1 million.
CITY_GEOS = 2;
}
+
// The user selected granularity of exit IP location.
LocationGranularity location_granularity = 3;
@@ -70,5 +72,6 @@
bytes token_key_id = 1;
bytes public_metadata_extensions = 2;
}
+
PrivacyPassData privacy_pass_data = 5;
}
diff --git a/quiche/blind_sign_auth/proto/public_metadata.proto b/quiche/blind_sign_auth/proto/public_metadata.proto
index c8da242..1e93e98 100644
--- a/quiche/blind_sign_auth/proto/public_metadata.proto
+++ b/quiche/blind_sign_auth/proto/public_metadata.proto
@@ -36,6 +36,7 @@
// City region geo id if requested by the client.
string city_geo_id = 2;
}
+
Location exit_location = 1;
// Indicates which service this token is associated with.
@@ -49,6 +50,7 @@
UNSPECIFIED_DEBUG_MODE = 0;
DEBUG_ALL = 1;
}
+
DebugMode debug_mode = 4;
}