blob: 1ec128bf609a78a8d56f66318dcb650d56dd8773 [file] [log] [blame]
rharrison@chromium.org756b7e92012-03-28 05:02:17 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
rharrison@chromium.org3d530352012-02-10 03:14:08 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
thakis4847a842015-08-28 07:23:57 +09005syntax = "proto2";
6
nyquist@chromium.org02dc6012012-11-13 06:36:20 +09007option optimize_for = LITE_RUNTIME;
8
rharrison@chromium.org3d530352012-02-10 03:14:08 +09009// This is a simple dummy protocol buffer that is used for testing handling of
10// protocol buffers in MessageReader and MessageWriter.
11
12message TestProto {
13 optional string text = 1;
14 optional int32 number = 2;
thakis4847a842015-08-28 07:23:57 +090015}