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

Side by Side Diff: ui/gfx/geometry/mojo/geometry.typemap

Issue 2008193002: Change mojo geometry structs from using type converters to StructTraits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 mojom = "//ui/gfx/geometry/mojo/geometry.mojom"
6 public_headers = [
7 "//ui/gfx/geometry/point.h",
8 "//ui/gfx/geometry/point_f.h",
9 "//ui/gfx/geometry/size.h",
10 "//ui/gfx/geometry/rect.h",
11 "//ui/gfx/geometry/rect_f.h",
12 "//ui/gfx/geometry/insets.h",
13 ]
14 traits_headers = [ "//ui/gfx/geometry/mojo/geometry_struct_traits.h" ]
15 deps = [
16 "//ui/gfx/geometry",
17 ]
18 type_mappings = [
19 "mojo.Point=gfx::Point",
20 "mojo.PointF=gfx::PointF",
21 "mojo.Size=gfx::Size",
22 "mojo.SizeF=gfx::SizeF",
23 "mojo.Rect=gfx::Rect",
24 "mojo.RectF=gfx::RectF",
25 "mojo.Insets=gfx::Insets",
26 "mojo.InsetsF=gfx::InsetsF",
27 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698