Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: components/mus/ws/test_utils.h

Issue 1909733002: mus: Add EventObserver to allow passively listening to UI events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/mus/ws/test_utils.h
diff --git a/components/mus/ws/test_utils.h b/components/mus/ws/test_utils.h
index c5c484f93e9b5fcb7d60d8f88c089420048c63bf..f764f950c37ddab2e8525a07da3fac705699c1ca 100644
--- a/components/mus/ws/test_utils.h
+++ b/components/mus/ws/test_utils.h
@@ -18,6 +18,7 @@
#include "components/mus/ws/platform_display_factory.h"
#include "components/mus/ws/test_change_tracker.h"
#include "components/mus/ws/user_display_manager.h"
+#include "components/mus/ws/user_id.h"
#include "components/mus/ws/window_manager_factory_registry.h"
#include "components/mus/ws/window_manager_state.h"
#include "components/mus/ws/window_server_delegate.h"
@@ -69,6 +70,7 @@ class WindowTreeTestApi {
WindowTreeTestApi(WindowTree* tree);
~WindowTreeTestApi();
+ void set_user_id(const UserId& user_id) { tree_->user_id_ = user_id; }
void set_window_manager_internal(mojom::WindowManager* wm_internal) {
tree_->window_manager_internal_ = wm_internal;
}
@@ -76,6 +78,9 @@ class WindowTreeTestApi {
void ClearAck() { tree_->event_ack_id_ = 0; }
void EnableCapture() { tree_->event_ack_id_ = 1u; }
+ void SetEventObserver(mojom::EventMatcherPtr matcher,
+ uint32_t event_observer_id);
+
private:
WindowTree* tree_;
@@ -289,7 +294,10 @@ class TestWindowTreeClient : public mus::mojom::WindowTreeClient {
mojo::Array<uint8_t> new_data) override;
void OnWindowInputEvent(uint32_t event_id,
uint32_t window,
- mojom::EventPtr event) override;
+ mojom::EventPtr event,
+ uint32_t event_observer_id) override;
+ void OnEventObserved(mojom::EventPtr event,
+ uint32_t event_observer_id) override;
void OnWindowFocused(uint32_t focused_window_id) override;
void OnWindowPredefinedCursorChanged(uint32_t window_id,
mojom::Cursor cursor_id) override;

Powered by Google App Engine
This is Rietveld 408576698