summaryrefslogtreecommitdiff
path: root/chromium/components/session_proto_db/session_proto_db_test_proto.proto
blob: 153846a61a4107a04f22e3a9175a33efa1778ba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

syntax = "proto2";

option optimize_for = LITE_RUNTIME;

package session_proto_db;

// Proto used for testing purposes.
message SessionProtoDBTestProto {
  // A field
  optional string key = 1;

  // Another field
  optional int32 b = 2;
}