| Index: services/ui/public/cpp/lib/in_flight_change.cc
|
| diff --git a/services/ui/public/cpp/lib/in_flight_change.cc b/services/ui/public/cpp/lib/in_flight_change.cc
|
| index 9f25b414a528df3cf574cdbbee990da50a40ae88..e3483a94874627e018e587f8872217b5556b20fb 100644
|
| --- a/services/ui/public/cpp/lib/in_flight_change.cc
|
| +++ b/services/ui/public/cpp/lib/in_flight_change.cc
|
| @@ -39,6 +39,19 @@ void InFlightBoundsChange::Revert() {
|
| WindowPrivate(window()).LocalSetBounds(window()->bounds(), revert_bounds_);
|
| }
|
|
|
| +// InFlightMoveLoopChange -----------------------------------------------------
|
| +
|
| +InFlightMoveLoopChange::InFlightMoveLoopChange(Window* window)
|
| + : InFlightChange(window, ChangeType::MOVE_LOOP) {}
|
| +
|
| +void InFlightMoveLoopChange::SetRevertValueFrom(const InFlightChange& change) {}
|
| +
|
| +void InFlightMoveLoopChange::Revert() {
|
| + // Reverting bounds happens in the window server in the error case; it cannot
|
| + // happen in the client because this could conflict with a
|
| + // InFlightBoundsChange.
|
| +}
|
| +
|
| // CrashInFlightChange --------------------------------------------------------
|
|
|
| CrashInFlightChange::CrashInFlightChange(Window* window, ChangeType type)
|
|
|