Index: services/ui/public/cpp/in_flight_change.h |
diff --git a/services/ui/public/cpp/in_flight_change.h b/services/ui/public/cpp/in_flight_change.h |
index 7981ef2f71ccbe82e8f09a7499495ebd53256af4..d652ebd8d787bd15be0d18995beaae531076a842 100644 |
--- a/services/ui/public/cpp/in_flight_change.h |
+++ b/services/ui/public/cpp/in_flight_change.h |
@@ -144,16 +144,16 @@ class InFlightBoundsChange : public InFlightChange { |
DISALLOW_COPY_AND_ASSIGN(InFlightBoundsChange); |
}; |
-class InFlightMoveLoopChange : public InFlightChange { |
+class InFlightDragChange : public InFlightChange { |
public: |
- explicit InFlightMoveLoopChange(Window* window); |
+ explicit InFlightDragChange(Window* window); |
// InFlightChange: |
void SetRevertValueFrom(const InFlightChange& change) override; |
void Revert() override; |
private: |
- DISALLOW_COPY_AND_ASSIGN(InFlightMoveLoopChange); |
+ DISALLOW_COPY_AND_ASSIGN(InFlightDragChange); |
}; |
// Inflight change that crashes on failure. This is useful for changes that are |