Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Side by Side Diff: chrome/browser/userfeedback/proto/math.proto

Issue 2068004: Commiting http://codereview.chromium.org/2017007/show on behalf of rkc@chromi... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 package userfeedback;
9
10 // 2D Dimensions.
11 message Dimensions {
12 required float width = 1;
13 required float height = 2;
14 };
15
16 // Axis-aligned rectangle in 2D space.
17 message Rectangle {
18 required float left = 1;
19 required float top = 2;
20 required float width = 3;
21 required float height = 4;
22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698