| 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_UI_WS_TEST_CHANGE_TRACKER_H_ | 5 #ifndef SERVICES_UI_WS_TEST_CHANGE_TRACKER_H_ |
| 6 #define SERVICES_UI_WS_TEST_CHANGE_TRACKER_H_ | 6 #define SERVICES_UI_WS_TEST_CHANGE_TRACKER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ClientSpecificId client_id; | 73 ClientSpecificId client_id; |
| 74 std::vector<TestWindow> windows; | 74 std::vector<TestWindow> windows; |
| 75 Id window_id; | 75 Id window_id; |
| 76 Id window_id2; | 76 Id window_id2; |
| 77 Id window_id3; | 77 Id window_id3; |
| 78 gfx::Rect bounds; | 78 gfx::Rect bounds; |
| 79 gfx::Rect bounds2; | 79 gfx::Rect bounds2; |
| 80 base::Optional<cc::LocalSurfaceId> local_surface_id; | 80 base::Optional<cc::LocalSurfaceId> local_surface_id; |
| 81 int32_t event_action; | 81 int32_t event_action; |
| 82 bool matches_pointer_watcher; | 82 bool matches_pointer_watcher; |
| 83 gfx::Point event_root_location; |
| 83 std::string embed_url; | 84 std::string embed_url; |
| 84 mojom::OrderDirection direction; | 85 mojom::OrderDirection direction; |
| 85 bool bool_value; | 86 bool bool_value; |
| 86 float float_value; | 87 float float_value; |
| 87 std::string property_key; | 88 std::string property_key; |
| 88 std::string property_value; | 89 std::string property_value; |
| 89 int32_t cursor_id; | 90 int32_t cursor_id; |
| 90 uint32_t change_id; | 91 uint32_t change_id; |
| 91 cc::SurfaceId surface_id; | 92 cc::SurfaceId surface_id; |
| 92 gfx::Size frame_size; | 93 gfx::Size frame_size; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 std::vector<Change> changes_; | 187 std::vector<Change> changes_; |
| 187 | 188 |
| 188 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); | 189 DISALLOW_COPY_AND_ASSIGN(TestChangeTracker); |
| 189 }; | 190 }; |
| 190 | 191 |
| 191 } // namespace ws | 192 } // namespace ws |
| 192 | 193 |
| 193 } // namespace ui | 194 } // namespace ui |
| 194 | 195 |
| 195 #endif // SERVICES_UI_WS_TEST_CHANGE_TRACKER_H_ | 196 #endif // SERVICES_UI_WS_TEST_CHANGE_TRACKER_H_ |
| OLD | NEW |