summaryrefslogtreecommitdiff
path: root/libs/ui/ISurfaceComposer.cpp
diff options
context:
space:
mode:
author Mathias Agopian <mathias@google.com> 2009-07-02 18:11:53 -0700
committer Mathias Agopian <mathias@google.com> 2009-07-02 18:50:51 -0700
commitd763b5d9197e01662cafa376e1227e53e0463a3c (patch)
treea8e3a71cf4581453aa4bbfe5c70c0f870756c2d3 /libs/ui/ISurfaceComposer.cpp
parent0926b6184adb9bd1d4a432c7d4de0be58c602cc2 (diff)
get rid of references to MemoryDealer in SurfaceFlinger
Diffstat (limited to 'libs/ui/ISurfaceComposer.cpp')
-rw-r--r--libs/ui/ISurfaceComposer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ui/ISurfaceComposer.cpp b/libs/ui/ISurfaceComposer.cpp
index 2aa1405b0c75..fd2a590caff6 100644
--- a/libs/ui/ISurfaceComposer.cpp
+++ b/libs/ui/ISurfaceComposer.cpp
@@ -54,12 +54,12 @@ public:
return interface_cast<ISurfaceFlingerClient>(reply.readStrongBinder());
}
- virtual sp<IMemory> getCblk() const
+ virtual sp<IMemoryHeap> getCblk() const
{
Parcel data, reply;
data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
remote()->transact(BnSurfaceComposer::GET_CBLK, data, &reply);
- return interface_cast<IMemory>(reply.readStrongBinder());
+ return interface_cast<IMemoryHeap>(reply.readStrongBinder());
}
virtual void openGlobalTransaction()