summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger_client/ISurfaceComposer.cpp
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-05-28 14:22:23 -0700
committerMathias Agopian <mathias@google.com>2010-05-28 17:19:16 -0700
commit770492cb2b19f6a36ad748cd05fbedfbb9a67dfa (patch)
tree3c87a789492e52b3c26b1de9608f42690b86c2cd /libs/surfaceflinger_client/ISurfaceComposer.cpp
parentcdfd5fe2c89a30a31f9de5a5481e8997f014a89b (diff)
downloadframeworks_base-770492cb2b19f6a36ad748cd05fbedfbb9a67dfa.zip
frameworks_base-770492cb2b19f6a36ad748cd05fbedfbb9a67dfa.tar.gz
frameworks_base-770492cb2b19f6a36ad748cd05fbedfbb9a67dfa.tar.bz2
more clean-up in preparation of bigger changes
the most important change here is the renaming of ISurfaceFlingerClient to ISurfaceComposerClient Change-Id: I94e18b0417f50e06f21377446639c61f65f959b3
Diffstat (limited to 'libs/surfaceflinger_client/ISurfaceComposer.cpp')
-rw-r--r--libs/surfaceflinger_client/ISurfaceComposer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaceflinger_client/ISurfaceComposer.cpp b/libs/surfaceflinger_client/ISurfaceComposer.cpp
index b6f4e24..50495c1 100644
--- a/libs/surfaceflinger_client/ISurfaceComposer.cpp
+++ b/libs/surfaceflinger_client/ISurfaceComposer.cpp
@@ -46,13 +46,13 @@ public:
{
}
- virtual sp<ISurfaceFlingerClient> createConnection()
+ virtual sp<ISurfaceComposerClient> createConnection()
{
uint32_t n;
Parcel data, reply;
data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
remote()->transact(BnSurfaceComposer::CREATE_CONNECTION, data, &reply);
- return interface_cast<ISurfaceFlingerClient>(reply.readStrongBinder());
+ return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder());
}
virtual sp<IMemoryHeap> getCblk() const