OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_MUS_WS_TEST_CHANGE_TRACKER_H_ | 5 #ifndef COMPONENTS_MUS_WS_TEST_CHANGE_TRACKER_H_ |
6 #define COMPONENTS_MUS_WS_TEST_CHANGE_TRACKER_H_ | 6 #define COMPONENTS_MUS_WS_TEST_CHANGE_TRACKER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "components/mus/public/cpp/types.h" | 12 #include "components/mus/public/cpp/types.h" |
13 #include "components/mus/public/interfaces/window_tree.mojom.h" | 13 #include "components/mus/public/interfaces/window_tree.mojom.h" |
14 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" | 14 #include "mojo/public/cpp/bindings/array.h" |
15 #include "ui/mojo/geometry/geometry.mojom.h" | 15 #include "ui/mojo/geometry/geometry.mojom.h" |
16 | 16 |
17 namespace mus { | 17 namespace mus { |
18 | 18 |
19 namespace ws { | 19 namespace ws { |
20 | 20 |
21 enum ChangeType { | 21 enum ChangeType { |
22 CHANGE_TYPE_EMBED, | 22 CHANGE_TYPE_EMBED, |
23 CHANGE_TYPE_EMBEDDED_APP_DISCONNECTED, | 23 CHANGE_TYPE_EMBEDDED_APP_DISCONNECTED, |
24 CHANGE_TYPE_UNEMBED, | 24 CHANGE_TYPE_UNEMBED, |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 std::vector<Change> changes_; | 155 std::vector<Change> changes_; |
156 | 156 |
157 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); | 157 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); |
158 }; | 158 }; |
159 | 159 |
160 } // namespace ws | 160 } // namespace ws |
161 | 161 |
162 } // namespace mus | 162 } // namespace mus |
163 | 163 |
164 #endif // COMPONENTS_MUS_WS_TEST_CHANGE_TRACKER_H_ | 164 #endif // COMPONENTS_MUS_WS_TEST_CHANGE_TRACKER_H_ |
OLD | NEW |