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

Side by Side Diff: third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp

Issue 2928413002: Add RectF and PointF typemaps in blink. (Closed)
Patch Set: address comment Created 3 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
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 #include "third_party/WebKit/Source/platform/mojo/GeometryStructTraits.h" 5 #include "third_party/WebKit/Source/platform/mojo/GeometryStructTraits.h"
6 6
7 namespace mojo { 7 namespace mojo {
8 8
9 // static 9 // static
10 bool StructTraits<gfx::mojom::RectFDataView, ::blink::WebFloatRect>::Read(
11 gfx::mojom::RectFDataView data,
12 ::blink::WebFloatRect* out) {
13 if (data.width() < 0 || data.height() < 0)
14 return false;
15 out->x = data.x();
16 out->y = data.y();
17 out->width = data.width();
18 out->height = data.height();
19 return true;
20 }
21
22 // static
23 bool StructTraits<gfx::mojom::PointFDataView, ::blink::WebFloatPoint>::Read(
24 gfx::mojom::PointFDataView data,
25 ::blink::WebFloatPoint* out) {
26 out->x = data.x();
27 out->y = data.y();
28 return true;
29 }
30
31 // static
10 bool StructTraits<gfx::mojom::SizeDataView, ::blink::WebSize>::Read( 32 bool StructTraits<gfx::mojom::SizeDataView, ::blink::WebSize>::Read(
11 gfx::mojom::SizeDataView data, 33 gfx::mojom::SizeDataView data,
12 ::blink::WebSize* out) { 34 ::blink::WebSize* out) {
13 if (data.width() < 0 || data.height() < 0) 35 if (data.width() < 0 || data.height() < 0)
14 return false; 36 return false;
15 out->width = data.width(); 37 out->width = data.width();
16 out->height = data.height(); 38 out->height = data.height();
17 return true; 39 return true;
18 } 40 }
19 41
20 } // namespace mojo 42 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698