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

Unified Diff: services/ui/public/interfaces/display/display_struct_traits.h

Issue 2123613002: Add a mojom/StructTrait for display::Display. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move unit test target. Created 4 years, 5 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: services/ui/public/interfaces/display/display_struct_traits.h
diff --git a/services/ui/public/interfaces/display/display_struct_traits.h b/services/ui/public/interfaces/display/display_struct_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..076f2d0c29b7b1f4cbb1c7152a12cc72928980d2
--- /dev/null
+++ b/services/ui/public/interfaces/display/display_struct_traits.h
@@ -0,0 +1,63 @@
+// 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 SERVICES_UI_PUBLIC_INTERFACES_DISPLAY_DISPLAY_STRUCT_TRAITS_H_
+#define SERVICES_UI_PUBLIC_INTERFACES_DISPLAY_DISPLAY_STRUCT_TRAITS_H_
+
+#include "ui/display/display.h"
+#include "services/ui/public/interfaces/display/display.mojom.h"
+
+namespace mojo {
+
+template <>
+struct EnumTraits<display::mojom::Rotation, display::Display::Rotation> {
+ static display::mojom::Rotation ToMojom(display::Display::Rotation type);
+ static bool FromMojom(display::mojom::Rotation type,
+ display::Display::Rotation* output);
+};
+
+template <>
+struct EnumTraits<display::mojom::TouchSupport,
+ display::Display::TouchSupport> {
+ static display::mojom::TouchSupport ToMojom(
+ display::Display::TouchSupport type);
+ static bool FromMojom(display::mojom::TouchSupport type,
+ display::Display::TouchSupport* output);
+};
+
+template <>
+struct StructTraits<display::mojom::Display, display::Display> {
+ static int64_t id(const display::Display& display) { return display.id(); }
+
+ static const gfx::Rect& bounds(const display::Display& display) {
+ return display.bounds();
+ }
+
+ static const gfx::Rect& work_area(const display::Display& display) {
+ return display.work_area();
+ }
+
+ static float device_scale_factor(const display::Display& display) {
+ return display.device_scale_factor();
+ }
+
+ static display::Display::Rotation rotation(const display::Display& display) {
+ return display.rotation();
+ }
+
+ static display::Display::TouchSupport touch_support(
+ const display::Display& display) {
+ return display.touch_support();
+ }
+
+ static const gfx::Size& maximum_cursor_size(const display::Display& display) {
+ return display.maximum_cursor_size();
+ }
+
+ static bool Read(display::mojom::DisplayDataView data, display::Display* out);
+};
+
+} // namespace mojo
+
+#endif // SERVICES_UI_PUBLIC_INTERFACES_DISPLAY_DISPLAY_STRUCT_TRAITS_H_
« no previous file with comments | « services/ui/public/interfaces/display/display.typemap ('k') | services/ui/public/interfaces/display/display_struct_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698