OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 UI_AURA_MUS_IN_FLIGHT_CHANGE_H_ | 5 #ifndef UI_AURA_MUS_IN_FLIGHT_CHANGE_H_ |
6 #define UI_AURA_MUS_IN_FLIGHT_CHANGE_H_ | 6 #define UI_AURA_MUS_IN_FLIGHT_CHANGE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ptr_util.h" | 15 #include "base/memory/ptr_util.h" |
16 #include "mojo/public/cpp/bindings/array.h" | |
17 #include "ui/aura/window_observer.h" | 16 #include "ui/aura/window_observer.h" |
18 #include "ui/gfx/geometry/rect.h" | 17 #include "ui/gfx/geometry/rect.h" |
19 | 18 |
20 namespace ui { | 19 namespace ui { |
21 | 20 |
22 namespace mojom { | 21 namespace mojom { |
23 enum class Cursor : int32_t; | 22 enum class Cursor : int32_t; |
24 } | 23 } |
25 | 24 |
26 } // namespace ui | 25 } // namespace ui |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 void SetRevertValueFrom(const InFlightChange& change) override; | 322 void SetRevertValueFrom(const InFlightChange& change) override; |
324 void Revert() override; | 323 void Revert() override; |
325 | 324 |
326 private: | 325 private: |
327 DISALLOW_COPY_AND_ASSIGN(InFlightSetModalChange); | 326 DISALLOW_COPY_AND_ASSIGN(InFlightSetModalChange); |
328 }; | 327 }; |
329 | 328 |
330 } // namespace aura | 329 } // namespace aura |
331 | 330 |
332 #endif // UI_AURA_MUS_IN_FLIGHT_CHANGE_H_ | 331 #endif // UI_AURA_MUS_IN_FLIGHT_CHANGE_H_ |
OLD | NEW |