session_proto_db_test_proto.proto 406 B

123456789101112131415161718
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. syntax = "proto2";
  5. option optimize_for = LITE_RUNTIME;
  6. package session_proto_db;
  7. // Proto used for testing purposes.
  8. message SessionProtoDBTestProto {
  9. // A field
  10. optional string key = 1;
  11. // Another field
  12. optional int32 b = 2;
  13. }