| 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 0291bafc95865fda14e913648f650ec8aa606eba..7199521e97cf1553b6f4f9c5c27ab9c91c713b5c 100644
|
| --- a/ui/aura/mus/in_flight_change.h
|
| +++ b/ui/aura/mus/in_flight_change.h
|
| @@ -137,13 +137,16 @@ class InFlightChange {
|
|
|
| class InFlightBoundsChange : public InFlightChange {
|
| public:
|
| - InFlightBoundsChange(WindowMus* window, const gfx::Rect& revert_bounds);
|
| + InFlightBoundsChange(WindowTreeClient* window_tree_client,
|
| + WindowMus* window,
|
| + const gfx::Rect& revert_bounds);
|
|
|
| // InFlightChange:
|
| void SetRevertValueFrom(const InFlightChange& change) override;
|
| void Revert() override;
|
|
|
| private:
|
| + WindowTreeClient* window_tree_client_;
|
| gfx::Rect revert_bounds_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InFlightBoundsChange);
|
| @@ -271,7 +274,9 @@ class InFlightPredefinedCursorChange : public InFlightChange {
|
|
|
| class InFlightVisibleChange : public InFlightChange {
|
| public:
|
| - InFlightVisibleChange(WindowMus* window, const bool revert_value);
|
| + InFlightVisibleChange(WindowTreeClient* client,
|
| + WindowMus* window,
|
| + const bool revert_value);
|
| ~InFlightVisibleChange() override;
|
|
|
| // InFlightChange:
|
| @@ -279,6 +284,7 @@ class InFlightVisibleChange : public InFlightChange {
|
| void Revert() override;
|
|
|
| private:
|
| + WindowTreeClient* window_tree_client_;
|
| bool revert_visible_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InFlightVisibleChange);
|
|
|