From 1175dc00a8888c90a920aacbfdaeeceb385e9823 Mon Sep 17 00:00:00 2001 From: Kevin Lubick Date: Mon, 28 Feb 2022 12:41:27 -0500 Subject: Fix transitive dependencies on SkImageEncoder In https://skia-review.googlesource.com/c/skia/+/512416, we would like to decouple SkImage and SkImageEncoder. This CL was created by searching for use of these objects: - SkEncodedImageFormat - SkStream - SkData - SkBitmap - SkPixmap and making sure those files followed the Include What You Use (IWYU) guidelines. Signed-off-by: Kevin Lubick Change-Id: I8edbcd1c9a526b8084d7e2c023895d1ad2f8c9b1 --- libs/input/TouchSpotController.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'libs/input/TouchSpotController.cpp') diff --git a/libs/input/TouchSpotController.cpp b/libs/input/TouchSpotController.cpp index f7c685ff8ba6..4ac66c4ffb6a 100644 --- a/libs/input/TouchSpotController.cpp +++ b/libs/input/TouchSpotController.cpp @@ -23,12 +23,6 @@ #include -#include -#include -#include -#include -#include - namespace { // Time to spend fading out the spot completely. const nsecs_t SPOT_FADE_DURATION = 200 * 1000000LL; // 200 ms -- cgit v1.2.3-59-g8ed1b