| Index: ui/aura/mus/in_flight_change.h
|
| diff --git a/ui/aura/mus/in_flight_change.h b/ui/aura/mus/in_flight_change.h
|
| index e5bf323195cc674c3650305d05824e46ec09d86a..50920e9d66b14a2a0e8625c238b9e7d76c8b65aa 100644
|
| --- a/ui/aura/mus/in_flight_change.h
|
| +++ b/ui/aura/mus/in_flight_change.h
|
| @@ -22,7 +22,7 @@
|
| namespace ui {
|
|
|
| namespace mojom {
|
| -enum class Cursor : int32_t;
|
| +enum class CursorType : int32_t;
|
| }
|
|
|
| } // namespace ui
|
| @@ -274,7 +274,7 @@ class InFlightPropertyChange : public InFlightChange {
|
| class InFlightPredefinedCursorChange : public InFlightChange {
|
| public:
|
| InFlightPredefinedCursorChange(WindowMus* window,
|
| - ui::mojom::Cursor revert_value);
|
| + ui::mojom::CursorType revert_value);
|
| ~InFlightPredefinedCursorChange() override;
|
|
|
| // InFlightChange:
|
| @@ -282,7 +282,7 @@ class InFlightPredefinedCursorChange : public InFlightChange {
|
| void Revert() override;
|
|
|
| private:
|
| - ui::mojom::Cursor revert_cursor_;
|
| + ui::mojom::CursorType revert_cursor_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InFlightPredefinedCursorChange);
|
| };
|
|
|