summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Michael Wright <michaelwr@google.com> 2015-04-17 18:35:15 +0100
committer Michael Wright <michaelwr@google.com> 2015-04-17 18:35:15 +0100
commitb85401d4badec20da60a588ee5d04cb139036a5d (patch)
treeb0f65d41a1f8d939b2f009bb736a963d60d92181
parent842500e146cdc0036b2a1a3e2acc7626d005128b (diff)
Mark all InputReaderContext methods as pure virtual
Also, fix the build. Change-Id: I45d3daa8c0710b2f9421e8ffd011d2d39c05e030
-rw-r--r--services/inputflinger/InputReader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/inputflinger/InputReader.h b/services/inputflinger/InputReader.h
index baff7fa69b..451a20fc0d 100644
--- a/services/inputflinger/InputReader.h
+++ b/services/inputflinger/InputReader.h
@@ -420,8 +420,8 @@ public:
virtual void requestTimeoutAtTime(nsecs_t when) = 0;
virtual int32_t bumpGeneration() = 0;
- virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices);
- virtual void dispatchExternalStylusState(const StylusState& outState);
+ virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices) = 0;
+ virtual void dispatchExternalStylusState(const StylusState& outState) = 0;
virtual InputReaderPolicyInterface* getPolicy() = 0;
virtual InputListenerInterface* getListener() = 0;