| Index: third_party/WebKit/Source/platform/mojo/WebGeometryStructTraits.h
|
| diff --git a/third_party/WebKit/Source/platform/mojo/WebGeometryStructTraits.h b/third_party/WebKit/Source/platform/mojo/WebGeometryStructTraits.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7792619beabba2e7a6606a4370e01f2efb70d88e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/platform/mojo/WebGeometryStructTraits.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#ifndef WebGeometryStructTraits_h
|
| +#define WebGeometryStructTraits_h
|
| +
|
| +#include "platform/PlatformExport.h"
|
| +#include "public/platform/WebSize.h"
|
| +#include "ui/gfx/geometry/mojo/geometry.mojom-blink.h"
|
| +
|
| +namespace mojo {
|
| +
|
| +template <>
|
| +struct PLATFORM_EXPORT
|
| + StructTraits<gfx::mojom::blink::Size::DataView, ::blink::WebSize> {
|
| + static int width(const ::blink::WebSize& size) { return size.width; }
|
| + static int height(const ::blink::WebSize& size) { return size.height; }
|
| + static bool Read(gfx::mojom::blink::Size::DataView, ::blink::WebSize* out);
|
| +};
|
| +
|
| +} // namespace mojo
|
| +
|
| +#endif // WebGeometryStructTraits_h
|
|
|