Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | |
| 5 // Message definitions shared between proto files. | |
|
Kevin M
2016/07/19 16:01:41
nit: between => across
CJ
2016/07/19 20:35:57
Done.
| |
| 4 | 6 |
| 5 syntax = "proto2"; | 7 syntax = "proto2"; |
| 6 | 8 |
| 7 option optimize_for = LITE_RUNTIME; | 9 option optimize_for = LITE_RUNTIME; |
| 8 | 10 |
| 9 package cc.proto; | 11 package blimp; |
| 10 | 12 |
| 11 message Vector2d { | 13 message EmptyMessage {} |
| 12 optional int64 x = 1; | |
| 13 optional int64 y = 2; | |
| 14 } | |
| OLD | NEW |