test_proto.proto 563 B

1234567891011121314151617181920
  1. // Copyright 2017 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 ipc_message_utils_test;
  7. // This is a simple dummy protocol buffer that is used for testing handling of
  8. // protocol buffers in ipc_message_utils.
  9. message TestMessage1 {
  10. optional int32 number = 1;
  11. }
  12. message TestMessage2 {
  13. repeated int32 numbers = 1;
  14. repeated string strings = 2;
  15. repeated TestMessage1 messages = 3;
  16. }