commit | 0438ca8a922661b3a870f61ab6fcb5fab4e5ffb8 | [log] [tgz] |
---|---|---|
author | Siarhei Vishniakou <svv@google.com> | Tue Mar 12 14:27:25 2024 -0700 |
committer | Siarhei Vishniakou <svv@google.com> | Wed Mar 13 11:05:48 2024 -0700 |
tree | 1d8c82b3c049b83256cabeea31cfadf6f627ff25 | |
parent | 852772756777194d84be7d9662bb155fafa41d06 [diff] |
Move InputConsumer into separate files This helps to keep track of things, and it also allows easier deletion in the future. Bug: 311142655 Test: none Change-Id: Iece2bf6857ab05f86072031a4cf3a36f843b1634
diff --git a/services/inputflinger/tests/FakeWindowHandle.h b/services/inputflinger/tests/FakeWindowHandle.h index fe25130..8ce61e7 100644 --- a/services/inputflinger/tests/FakeWindowHandle.h +++ b/services/inputflinger/tests/FakeWindowHandle.h
@@ -17,6 +17,7 @@ #pragma once #include <android-base/logging.h> +#include <input/InputConsumer.h> #include "../dispatcher/InputDispatcher.h" using android::base::Result;
diff --git a/services/inputflinger/tests/InputDispatcher_test.cpp b/services/inputflinger/tests/InputDispatcher_test.cpp index a662198..423975f 100644 --- a/services/inputflinger/tests/InputDispatcher_test.cpp +++ b/services/inputflinger/tests/InputDispatcher_test.cpp
@@ -33,6 +33,7 @@ #include <gtest/gtest.h> #include <input/BlockingQueue.h> #include <input/Input.h> +#include <input/InputConsumer.h> #include <input/PrintTools.h> #include <linux/input.h> #include <sys/epoll.h>