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

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

Issue 2833163002: Change ui cursor identifiers to an enum class. (Closed)
Patch Set: OK, it can't be explicit for mac. 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
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 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 #ifndef SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_ 5 #ifndef SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_
6 #define SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_ 6 #define SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_
7 7
8 #include "services/ui/public/interfaces/cursor/cursor.mojom-shared.h" 8 #include "services/ui/public/interfaces/cursor/cursor.mojom-shared.h"
9 #include "ui/base/cursor/cursor_data.h" 9 #include "ui/base/cursor/cursor_data.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 12
13 template <> 13 template <>
14 struct EnumTraits<ui::mojom::CursorType, ui::CursorType> {
15 static ui::mojom::CursorType ToMojom(ui::CursorType input);
16 static bool FromMojom(ui::mojom::CursorType input, ui::CursorType* out);
17 };
18
19 template <>
14 struct StructTraits<ui::mojom::CursorDataDataView, ui::CursorData> { 20 struct StructTraits<ui::mojom::CursorDataDataView, ui::CursorData> {
15 static ui::mojom::CursorType cursor_type(const ui::CursorData& c) { 21 static ui::CursorType cursor_type(const ui::CursorData& c) {
16 return ui::mojom::CursorType(c.cursor_type()); 22 return c.cursor_type();
17 } 23 }
18 static const base::TimeDelta& frame_delay(const ui::CursorData& c); 24 static const base::TimeDelta& frame_delay(const ui::CursorData& c);
19 static const gfx::Point& hotspot_in_pixels(const ui::CursorData& c); 25 static const gfx::Point& hotspot_in_pixels(const ui::CursorData& c);
20 static const std::vector<SkBitmap>& cursor_frames(const ui::CursorData& c); 26 static const std::vector<SkBitmap>& cursor_frames(const ui::CursorData& c);
21 static float scale_factor(const ui::CursorData& c) { 27 static float scale_factor(const ui::CursorData& c) {
22 return c.scale_factor(); 28 return c.scale_factor();
23 } 29 }
24 static bool Read(ui::mojom::CursorDataDataView data, ui::CursorData* out); 30 static bool Read(ui::mojom::CursorDataDataView data, ui::CursorData* out);
25 }; 31 };
26 32
27 } // namespace mojo 33 } // namespace mojo
28 34
29 #endif // SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_ 35 #endif // SERVICES_UI_PUBLIC_INTERFACES_CURSOR_CURSOR_STRUCT_TRAITS_H_
OLDNEW
« no previous file with comments | « services/ui/public/interfaces/cursor/cursor.mojom ('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