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

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

Issue 2354783004: Fix overflow/underflow in gfx geometry once and for all (Closed)
Patch Set: Remove accessibility test changes Created 4 years, 2 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
« no previous file with comments | « no previous file | ui/gfx/geometry/point.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 mojom = "//ui/gfx/geometry/mojo/geometry.mojom" 5 mojom = "//ui/gfx/geometry/mojo/geometry.mojom"
6 public_headers = [ 6 public_headers = [
7 "//ui/gfx/geometry/point.h", 7 "//ui/gfx/geometry/point.h",
8 "//ui/gfx/geometry/point_f.h", 8 "//ui/gfx/geometry/point_f.h",
9 "//ui/gfx/geometry/size.h", 9 "//ui/gfx/geometry/size.h",
10 "//ui/gfx/geometry/rect.h", 10 "//ui/gfx/geometry/rect.h",
11 "//ui/gfx/geometry/rect_f.h", 11 "//ui/gfx/geometry/rect_f.h",
12 "//ui/gfx/geometry/safe_integer_conversions.h",
12 "//ui/gfx/geometry/insets.h", 13 "//ui/gfx/geometry/insets.h",
13 "//ui/gfx/geometry/vector2d.h", 14 "//ui/gfx/geometry/vector2d.h",
14 "//ui/gfx/geometry/vector2d_f.h", 15 "//ui/gfx/geometry/vector2d_f.h",
15 ] 16 ]
16 traits_headers = [ "//ui/gfx/geometry/mojo/geometry_struct_traits.h" ] 17 traits_headers = [ "//ui/gfx/geometry/mojo/geometry_struct_traits.h" ]
17 deps = [ 18 deps = [
18 "//ui/gfx/geometry/mojo:struct_traits", 19 "//ui/gfx/geometry/mojo:struct_traits",
19 ] 20 ]
20 type_mappings = [ 21 type_mappings = [
21 "gfx.mojom.Point=gfx::Point", 22 "gfx.mojom.Point=gfx::Point",
22 "gfx.mojom.PointF=gfx::PointF", 23 "gfx.mojom.PointF=gfx::PointF",
23 "gfx.mojom.Size=gfx::Size", 24 "gfx.mojom.Size=gfx::Size",
24 "gfx.mojom.SizeF=gfx::SizeF", 25 "gfx.mojom.SizeF=gfx::SizeF",
25 "gfx.mojom.Rect=gfx::Rect", 26 "gfx.mojom.Rect=gfx::Rect",
26 "gfx.mojom.RectF=gfx::RectF", 27 "gfx.mojom.RectF=gfx::RectF",
27 "gfx.mojom.Insets=gfx::Insets", 28 "gfx.mojom.Insets=gfx::Insets",
28 "gfx.mojom.InsetsF=gfx::InsetsF", 29 "gfx.mojom.InsetsF=gfx::InsetsF",
29 "gfx.mojom.Vector2d=gfx::Vector2d", 30 "gfx.mojom.Vector2d=gfx::Vector2d",
30 "gfx.mojom.Vector2dF=gfx::Vector2dF", 31 "gfx.mojom.Vector2dF=gfx::Vector2dF",
31 ] 32 ]
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/geometry/point.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698