summaryrefslogtreecommitdiffstats
path: root/camera/camera2/CaptureRequest.cpp
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-11-17 10:50:55 -0800
committerMarco Nelissen <marcone@google.com>2014-11-17 10:50:55 -0800
commit77e79a509d19ab50b1867fe3903b5a8fae450591 (patch)
tree881d068bdc54d4835665e48649165f07393caafa /camera/camera2/CaptureRequest.cpp
parent575174d62b665900203d70a4d410329b8918c2af (diff)
parente78a27ca9c701aa996eee0e47fa26dd69d80ffcf (diff)
downloadframeworks_av-77e79a509d19ab50b1867fe3903b5a8fae450591.zip
frameworks_av-77e79a509d19ab50b1867fe3903b5a8fae450591.tar.gz
frameworks_av-77e79a509d19ab50b1867fe3903b5a8fae450591.tar.bz2
resolved conflicts for merge of e78a27ca to lmp-mr1-dev-plus-aosp
Change-Id: If10a9cc17245f95d5e10b1507445abbb4020670e
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