summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2009-11-03 09:28:27 -0800
committerEric Laurent <elaurent@google.com>2009-11-03 09:28:27 -0800
commit323028bd21a3d184efdcb2b6b0896fa343c32510 (patch)
tree8e15570e1780bcc8ac40ab1aec5e864a97d6722a
parentf163f3d600c056de0bdca6d12555a0225f76ec9a (diff)
downloadlibhardware_legacy-eclair-sholes-release.tar.gz
Added dump() method to AudioPolicyInterface.
-rw-r--r--include/hardware_legacy/AudioPolicyInterface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hardware_legacy/AudioPolicyInterface.h b/include/hardware_legacy/AudioPolicyInterface.h
index bb4fb2a..bd3c4b1 100644
--- a/include/hardware_legacy/AudioPolicyInterface.h
+++ b/include/hardware_legacy/AudioPolicyInterface.h
@@ -123,6 +123,9 @@ public:
virtual status_t setStreamVolumeIndex(AudioSystem::stream_type stream, int index) = 0;
// retreive current volume index for the specified stream
virtual status_t getStreamVolumeIndex(AudioSystem::stream_type stream, int *index) = 0;
+
+ //dump state
+ virtual status_t dump(int fd) = 0;
};