diff options
author | 2009-07-02 18:11:53 -0700 | |
---|---|---|
committer | 2009-07-02 18:50:51 -0700 | |
commit | d763b5d9197e01662cafa376e1227e53e0463a3c (patch) | |
tree | a8e3a71cf4581453aa4bbfe5c70c0f870756c2d3 /libs/ui/ISurfaceComposer.cpp | |
parent | 0926b6184adb9bd1d4a432c7d4de0be58c602cc2 (diff) |
get rid of references to MemoryDealer in SurfaceFlinger
Diffstat (limited to 'libs/ui/ISurfaceComposer.cpp')
-rw-r--r-- | libs/ui/ISurfaceComposer.cpp | 4 |
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() |