1// Copyright 2017 The Chromium Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto2"; 6option optimize_for = LITE_RUNTIME; 7package ipc_message_utils_test; 8 9// This is a simple dummy protocol buffer that is used for testing handling of 10// protocol buffers in ipc_message_utils. 11 12message TestMessage1 { 13 optional int32 number = 1; 14} 15 16message TestMessage2 { 17 repeated int32 numbers = 1; 18 repeated string strings = 2; 19 repeated TestMessage1 messages = 3; 20} 21