summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Bailly <olivier@google.com>2011-10-05 18:37:36 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-10-05 18:37:36 -0700
commit4db599c2891e3e144e5bcedba7ef958b1c1c815b (patch)
tree2387c8a709b964f67d321db26354dfd3d1bbbb98
parent5ab8a1017a76bc7e4fd2554b5064f650ba065b81 (diff)
parentb7ee39305b9b651dff8c2e5737feb5f9ae1136c9 (diff)
downloadhardware_libhardware_legacy-4db599c2891e3e144e5bcedba7ef958b1c1c815b.tar.gz
hardware_libhardware_legacy-4db599c2891e3e144e5bcedba7ef958b1c1c815b.tar.bz2
hardware_libhardware_legacy-4db599c2891e3e144e5bcedba7ef958b1c1c815b.zip
am b7ee3930: fix build: method needs to be pure virtual, otherwise needs to be defined.
* commit 'b7ee39305b9b651dff8c2e5737feb5f9ae1136c9': fix build: method needs to be pure virtual, otherwise needs to be defined.
-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;