summaryrefslogtreecommitdiffstats
path: root/include/hardware_legacy/AudioPolicyInterface.h
diff options
context:
space:
mode:
authorOlivier Bailly <olivier@google.com>2011-10-05 17:38:14 -0700
committerEric Laurent <elaurent@google.com>2011-10-05 18:02:02 -0700
commitb7ee39305b9b651dff8c2e5737feb5f9ae1136c9 (patch)
treeb80f18d2ed9046f140b05f58573ba945285d136c /include/hardware_legacy/AudioPolicyInterface.h
parent45bf8a6f0bbf148ca5a1a626ab1c5c38a0855e13 (diff)
downloadhardware_libhardware_legacy-b7ee39305b9b651dff8c2e5737feb5f9ae1136c9.zip
hardware_libhardware_legacy-b7ee39305b9b651dff8c2e5737feb5f9ae1136c9.tar.gz
hardware_libhardware_legacy-b7ee39305b9b651dff8c2e5737feb5f9ae1136c9.tar.bz2
fix build: method needs to be pure virtual, otherwise needs to be defined.
Change-Id: I9dbdd29dc430fbf19a1d9cb8d44a1f9c6f624dbb
Diffstat (limited to 'include/hardware_legacy/AudioPolicyInterface.h')
-rw-r--r--include/hardware_legacy/AudioPolicyInterface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hardware_legacy/AudioPolicyInterface.h b/include/hardware_legacy/AudioPolicyInterface.h
index 94b7759..1ee0e20 100644
--- a/include/hardware_legacy/AudioPolicyInterface.h
+++ b/include/hardware_legacy/AudioPolicyInterface.h
@@ -147,7 +147,7 @@ public:
int session,
int id) = 0;
virtual status_t unregisterEffect(int id) = 0;
- virtual status_t setEffectEnabled(int id, bool enabled);
+ virtual status_t setEffectEnabled(int id, bool enabled) = 0;
virtual bool isStreamActive(int stream, uint32_t inPastMs = 0) const = 0;