[email protected] | 95bd9580 | 2012-03-27 20:02:17 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | c033c508 | 2012-02-09 18:14:08 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
thakis | 869255a | 2015-08-27 22:23:57 | [diff] [blame] | 5 | syntax = "proto2"; |
6 | |||||
[email protected] | 93115b5 | 2012-11-12 21:36:20 | [diff] [blame] | 7 | option optimize_for = LITE_RUNTIME; |
8 | |||||
[email protected] | c033c508 | 2012-02-09 18:14:08 | [diff] [blame] | 9 | // This is a simple dummy protocol buffer that is used for testing handling of |
10 | // protocol buffers in MessageReader and MessageWriter. | ||||
11 | |||||
12 | message TestProto { | ||||
13 | optional string text = 1; | ||||
14 | optional int32 number = 2; | ||||
thakis | 869255a | 2015-08-27 22:23:57 | [diff] [blame] | 15 | } |