diff options
author | 2010-06-02 23:28:45 -0700 | |
---|---|---|
committer | 2010-06-04 18:57:40 -0700 | |
commit | 593c05ce7bcf7b6d94bd8c50da2b818cf05116b1 (patch) | |
tree | 7dd70eab8cf6b3dc140e5eedbe01164349d987de /libs/surfaceflinger/LayerDim.cpp | |
parent | 66236db38dbaae229a86005309b9f7c74eabc998 (diff) |
clean-up client management.
simplified things a lot, the biggest change is that the concept
of "ClientID" is now gone, instead we simply use references.
Change-Id: Icbc57f80865884aa5f35ad0d0a0db26f19f9f7ce
Diffstat (limited to 'libs/surfaceflinger/LayerDim.cpp')
-rw-r--r-- | libs/surfaceflinger/LayerDim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaceflinger/LayerDim.cpp b/libs/surfaceflinger/LayerDim.cpp index 568fedbf031e..d528d2ff77af 100644 --- a/libs/surfaceflinger/LayerDim.cpp +++ b/libs/surfaceflinger/LayerDim.cpp @@ -39,8 +39,8 @@ int32_t LayerDim::sHeight; // --------------------------------------------------------------------------- LayerDim::LayerDim(SurfaceFlinger* flinger, DisplayID display, - const sp<Client>& client, int32_t i) - : LayerBaseClient(flinger, display, client, i) + const sp<Client>& client) + : LayerBaseClient(flinger, display, client) { } |