blob: 1ec128bf609a78a8d56f66318dcb650d56dd8773 [file] [log] [blame]
[email protected]95bd95802012-03-27 20:02:171// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]c033c5082012-02-09 18:14:082// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
thakis869255a2015-08-27 22:23:575syntax = "proto2";
6
[email protected]93115b52012-11-12 21:36:207option optimize_for = LITE_RUNTIME;
8
[email protected]c033c5082012-02-09 18:14:089// 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;
thakis869255a2015-08-27 22:23:5715}