diff options
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 |
commit | b85401d4badec20da60a588ee5d04cb139036a5d (patch) | |
tree | b0f65d41a1f8d939b2f009bb736a963d60d92181 /services | |
parent | 842500e146cdc0036b2a1a3e2acc7626d005128b (diff) | |
download | frameworks_native-b85401d4badec20da60a588ee5d04cb139036a5d.zip frameworks_native-b85401d4badec20da60a588ee5d04cb139036a5d.tar.gz frameworks_native-b85401d4badec20da60a588ee5d04cb139036a5d.tar.bz2 |
Mark all InputReaderContext methods as pure virtual
Also, fix the build.
Change-Id: I45d3daa8c0710b2f9421e8ffd011d2d39c05e030
Diffstat (limited to 'services')
-rw-r--r-- | services/inputflinger/InputReader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/inputflinger/InputReader.h b/services/inputflinger/InputReader.h index baff7fa..451a20f 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; |