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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/userfeedback/proto/math.proto
===================================================================
--- chrome/browser/userfeedback/proto/math.proto (revision 0)
+++ chrome/browser/userfeedback/proto/math.proto (revision 0)
@@ -0,0 +1,22 @@
+// Copyright 2009 Google Inc. All Rights Reserved.
+// Author: micapolos@google.com (Michal Pociecha-Los)
+//
+// Messages containing common math data structures.
+
+syntax = "proto2";
+
+package userfeedback;
+
+// 2D Dimensions.
+message Dimensions {
+ required float width = 1;
+ required float height = 2;
+};
+
+// Axis-aligned rectangle in 2D space.
+message Rectangle {
+ required float left = 1;
+ required float top = 2;
+ required float width = 3;
+ required float height = 4;
+};

Powered by Google App Engine
This is Rietveld 408576698