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 SERVICES_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ | 5 #ifndef SERVICES_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ |
6 #define SERVICES_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ | 6 #define SERVICES_VIEW_MANAGER_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 "mojo/public/cpp/bindings/array.h" | 12 #include "mojo/public/cpp/bindings/array.h" |
13 #include "mojo/services/public/interfaces/geometry/geometry.mojom.h" | 13 #include "mojo/services/geometry/public/interfaces/geometry.mojom.h" |
14 #include "mojo/services/view_manager/public/cpp/types.h" | 14 #include "mojo/services/view_manager/public/cpp/types.h" |
15 #include "mojo/services/view_manager/public/interfaces/view_manager.mojom.h" | 15 #include "mojo/services/view_manager/public/interfaces/view_manager.mojom.h" |
16 | 16 |
17 namespace mojo { | 17 namespace mojo { |
18 namespace service { | 18 namespace service { |
19 | 19 |
20 enum ChangeType { | 20 enum ChangeType { |
21 CHANGE_TYPE_EMBED, | 21 CHANGE_TYPE_EMBED, |
22 CHANGE_TYPE_EMBEDDED_APP_DISCONNECTED, | 22 CHANGE_TYPE_EMBEDDED_APP_DISCONNECTED, |
23 // TODO(sky): NODE->VIEW. | 23 // TODO(sky): NODE->VIEW. |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 Delegate* delegate_; | 145 Delegate* delegate_; |
146 std::vector<Change> changes_; | 146 std::vector<Change> changes_; |
147 | 147 |
148 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); | 148 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); |
149 }; | 149 }; |
150 | 150 |
151 } // namespace service | 151 } // namespace service |
152 } // namespace mojo | 152 } // namespace mojo |
153 | 153 |
154 #endif // SERVICES_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ | 154 #endif // SERVICES_VIEW_MANAGER_TEST_CHANGE_TRACKER_H_ |
OLD | NEW |