Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/google/protobuf/wrappers.proto
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ syntax = "proto3";

package google.protobuf;

import "third_party/boundary_proxy/proto_compare/annotation.proto";

option cc_enable_arenas = true;
option go_package = "google.golang.org/protobuf/types/known/wrapperspb";
option java_package = "com.google.protobuf";
Expand All @@ -57,6 +59,11 @@ option java_multiple_files = true;
option objc_class_prefix = "GPB";
option csharp_namespace = "Google.Protobuf.WellKnownTypes";

// Mark this file as having proto_compare annotations to cross TPC boundary
// proxy. This is for internal testing only.
option (proto_compare.file_vetting_status) = "latest";
option (proto_compare.file_use_case) = FILE_USE_CASE_INTERNAL_TPC;

// Wrapper message for `double`.
//
// The JSON representation for `DoubleValue` is JSON number.
Expand Down
Loading