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

Unified Diff: mojo/public/interfaces/geometry/geometry.mojom

Issue 298253005: Move geometry to mojo/services, extract input events to their own mojom (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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: mojo/public/interfaces/geometry/geometry.mojom
diff --git a/mojo/public/interfaces/geometry/geometry.mojom b/mojo/public/interfaces/geometry/geometry.mojom
deleted file mode 100644
index 3e7490f5ce0cdfd28873a525882ae83822e826c2..0000000000000000000000000000000000000000
--- a/mojo/public/interfaces/geometry/geometry.mojom
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-module mojo {
-
-struct Point {
- int32 x;
- int32 y;
-};
-
-struct Size {
- int32 width;
- int32 height;
-};
-
-struct Rect {
- Point position;
- Size size;
-};
-
-}

Powered by Google App Engine
This is Rietveld 408576698