summaryrefslogtreecommitdiffstats
path: root/camera/camera2/CaptureRequest.cpp
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-11-14 07:58:25 -0800
committerMarco Nelissen <marcone@google.com>2014-11-14 14:01:03 -0800
commit06b46062d2f8bc82ca3061a23d197734ae51918b (patch)
tree3aee1330c3d65579643e50d105da35919ddc295f /camera/camera2/CaptureRequest.cpp
parente5a9eb684921b75919b1a7fee97259b0ca48bd47 (diff)
downloadframeworks_av-06b46062d2f8bc82ca3061a23d197734ae51918b.zip
frameworks_av-06b46062d2f8bc82ca3061a23d197734ae51918b.tar.gz
frameworks_av-06b46062d2f8bc82ca3061a23d197734ae51918b.tar.bz2
Update calls to IInterface::asBinder()
to use the new static version. Change-Id: I89a5988a0ac694ffc04d88cf939e8455bf925d4c
Diffstat (limited to 'camera/camera2/CaptureRequest.cpp')
-rw-r--r--camera/camera2/CaptureRequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/camera/camera2/CaptureRequest.cpp b/camera/camera2/CaptureRequest.cpp
index 57e5319..d5e1c5b 100644
--- a/camera/camera2/CaptureRequest.cpp
+++ b/camera/camera2/CaptureRequest.cpp
@@ -106,7 +106,7 @@ status_t CaptureRequest::writeToParcel(Parcel* parcel) const {
sp<IBinder> binder;
if (surface != 0) {
- binder = surface->getIGraphicBufferProducer()->asBinder();
+ binder = IInterface::asBinder(surface->getIGraphicBufferProducer());
}
// not sure if readParcelableArray does this, hard to tell from source