diff options
author | 2009-05-07 17:47:54 -0700 | |
---|---|---|
committer | 2009-05-07 17:47:54 -0700 | |
commit | 538bcd702c0053772245dfbb634c266959cf6af9 (patch) | |
tree | 03c691c53c943844bb1c6b0b76c45eca26ce5160 /include/ui/Camera.h | |
parent | 881c4c25f1f807952a6740ecad1680a8241b4de4 (diff) | |
parent | 2a04aefdf03abbdabb035f89c8a1df636c168de0 (diff) |
Merge change 1164 into donut
* changes:
Add new binder methods to camera client to support generic callbacks This is the first step in a multi-step change to move from the old specific callbacks to a generic callback. This will allow future flexibility in the interface without requiring binder rewrites. Bug 1837832
Diffstat (limited to 'include/ui/Camera.h')
-rw-r--r-- | include/ui/Camera.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ui/Camera.h b/include/ui/Camera.h index fd851d9efcf1..901c7a98f9a1 100644 --- a/include/ui/Camera.h +++ b/include/ui/Camera.h @@ -143,6 +143,8 @@ public: virtual void errorCallback(status_t error); virtual void autoFocusCallback(bool focused); virtual void recordingCallback(const sp<IMemory>& frame); + virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2); + virtual void dataCallback(int32_t msgType, const sp<IMemory>& frame); sp<ICamera> remote(); |