summaryrefslogtreecommitdiffstats
path: root/libs/ui
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2009-07-02 10:04:20 -0700
committerJames Dong <jdong@google.com>2009-07-02 10:04:20 -0700
commita1b653d41df9a7999e1dba2a508295671ff6771d (patch)
tree74c7c4639f56b4aab2e076eaadb7d436cab68113 /libs/ui
parenta54755962ca7725d1e2b6cacbbaece6f1cbf5af4 (diff)
downloadframeworks_base-a1b653d41df9a7999e1dba2a508295671ff6771d.zip
frameworks_base-a1b653d41df9a7999e1dba2a508295671ff6771d.tar.gz
frameworks_base-a1b653d41df9a7999e1dba2a508295671ff6771d.tar.bz2
Return CAMERA_ERROR_SERVER_DIED to camera app when camera service dies (bug 1956726)
Diffstat (limited to 'libs/ui')
-rw-r--r--libs/ui/Camera.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/Camera.cpp b/libs/ui/Camera.cpp
index a481ce7..975594f 100644
--- a/libs/ui/Camera.cpp
+++ b/libs/ui/Camera.cpp
@@ -312,7 +312,7 @@ void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr)
void Camera::binderDied(const wp<IBinder>& who) {
LOGW("ICamera died");
- notifyCallback(CAMERA_MSG_ERROR, DEAD_OBJECT, 0);
+ notifyCallback(CAMERA_MSG_ERROR, CAMERA_ERROR_SERVER_DIED, 0);
}
void Camera::DeathNotifier::binderDied(const wp<IBinder>& who) {