diff options
| author | 2009-05-20 11:28:04 -0700 | |
|---|---|---|
| committer | 2009-05-20 11:28:04 -0700 | |
| commit | 9660d304ae51a69509e5506e1fc80178025dee7c (patch) | |
| tree | 2db88e9f1a42bf5dfbbe01580a6e8071666179e9 /include/ui/ICameraClient.h | |
| parent | 490b2ba510c0857605f4913f0fdd1c47a1d93647 (diff) | |
donut snapshot
Diffstat (limited to 'include/ui/ICameraClient.h')
| -rw-r--r-- | include/ui/ICameraClient.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/ui/ICameraClient.h b/include/ui/ICameraClient.h index 73b951cf3c..c4bdd07585 100644 --- a/include/ui/ICameraClient.h +++ b/include/ui/ICameraClient.h @@ -29,13 +29,8 @@ class ICameraClient: public IInterface public: DECLARE_META_INTERFACE(CameraClient); - virtual void shutterCallback() = 0; - virtual void rawCallback(const sp<IMemory>& picture) = 0; - virtual void jpegCallback(const sp<IMemory>& picture) = 0; - virtual void previewCallback(const sp<IMemory>& frame) = 0; - virtual void errorCallback(status_t error) = 0; - virtual void autoFocusCallback(bool focused) = 0; - virtual void recordingCallback(const sp<IMemory>& frame) = 0; + virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0; + virtual void dataCallback(int32_t msgType, const sp<IMemory>& data) = 0; }; |