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

Side by Side Diff: services/ui/public/interfaces/cursor/cursor_struct_traits.h

Issue 2786983003: [aura-mus] Add ui::CursorData, with mojo serialization. (Closed)
Patch Set: everybody comments Created 3 years, 8 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 2017 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 #ifndef SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_
6 #define SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_
7
8 #include "services/ui/public/interfaces/cursor/cursor.mojom-shared.h"
9 #include "ui/base/cursor/cursor_data.h"
10
11 namespace mojo {
12
13 template <>
14 struct StructTraits<ui::mojom::CursorDataDataView, ui::CursorData> {
15 static ui::mojom::CursorType cursor_type(const ui::CursorData& c) {
16 return ui::mojom::CursorType(c.cursor_type());
17 }
18 static const base::TimeDelta& frame_delay(const ui::CursorData& c);
19 static const gfx::Point& hotspot_in_pixels(const ui::CursorData& c);
20 static const std::vector<SkBitmap>& cursor_frames(const ui::CursorData& c);
21 static float scale_factor(const ui::CursorData& c) {
22 return c.scale_factor();
23 }
24 static bool Read(ui::mojom::CursorDataDataView data, ui::CursorData* out);
25 };
26
27 } // namespace mojo
28
29 #endif // SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_
OLDNEW
« no previous file with comments | « services/ui/public/interfaces/cursor/cursor.typemap ('k') | services/ui/public/interfaces/cursor/cursor_struct_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698