| Index: components/mus/ws/test_change_tracker.h
|
| diff --git a/components/mus/ws/test_change_tracker.h b/components/mus/ws/test_change_tracker.h
|
| index 2051f8c3538879c440c87f3c4bc424a59afbb101..21d59f159b9468c2d6b56a1e1a256b7f43f4732b 100644
|
| --- a/components/mus/ws/test_change_tracker.h
|
| +++ b/components/mus/ws/test_change_tracker.h
|
| @@ -14,6 +14,7 @@
|
| #include "components/mus/common/types.h"
|
| #include "components/mus/public/interfaces/window_tree.mojom.h"
|
| #include "mojo/public/cpp/bindings/array.h"
|
| +#include "ui/gfx/geometry/point.h"
|
| #include "ui/mojo/geometry/geometry.mojom.h"
|
|
|
| namespace mus {
|
| @@ -77,7 +78,9 @@ struct Change {
|
| Id window_id3;
|
| mojo::Rect bounds;
|
| mojo::Rect bounds2;
|
| + uint32_t event_id;
|
| int32_t event_action;
|
| + gfx::Point event_location;
|
| mojo::String embed_url;
|
| mojom::OrderDirection direction;
|
| bool bool_value;
|
| @@ -156,7 +159,9 @@ class TestChangeTracker {
|
| void OnWindowVisibilityChanged(Id window_id, bool visible);
|
| void OnWindowOpacityChanged(Id window_id, float opacity);
|
| void OnWindowParentDrawnStateChanged(Id window_id, bool drawn);
|
| - void OnWindowInputEvent(Id window_id, mojom::EventPtr event);
|
| + void OnWindowInputEvent(uint32_t event_id,
|
| + Id window_id,
|
| + mojom::EventPtr event);
|
| void OnWindowSharedPropertyChanged(Id window_id,
|
| mojo::String name,
|
| mojo::Array<uint8_t> data);
|
|
|