| OLD | NEW |
| (Empty) |
| 1 // Copyright 2009 Google Inc. All Rights Reserved. | |
| 2 // Author: micapolos@google.com (Michal Pociecha-Los) | |
| 3 // | |
| 4 // Messages containing common math data structures. | |
| 5 | |
| 6 syntax = "proto2"; | |
| 7 | |
| 8 option optimize_for = LITE_RUNTIME; | |
| 9 | |
| 10 package userfeedback; | |
| 11 | |
| 12 // 2D Dimensions. | |
| 13 message Dimensions { | |
| 14 required float width = 1; | |
| 15 required float height = 2; | |
| 16 }; | |
| 17 | |
| 18 // Axis-aligned rectangle in 2D space. | |
| 19 message Rectangle { | |
| 20 required float left = 1; | |
| 21 required float top = 2; | |
| 22 required float width = 3; | |
| 23 required float height = 4; | |
| 24 }; | |
| OLD | NEW |