diff options
| author | 2011-07-20 16:46:11 -0700 | |
|---|---|---|
| committer | 2011-07-20 16:53:13 -0700 | |
| commit | c10d9d90b2088a3304076e0dc4bf05cdbb5d45ab (patch) | |
| tree | f1dcd16527dd7c6acc5a0a6f57433d2d9d013abe /libs/gui/ISurfaceComposerClient.cpp | |
| parent | 97c602c5af5f3ffd69009bf496d86347b71a2b4c (diff) | |
clean-up. get rid ofunused code and members in Surface[Control].cpp
Change-Id: Ia7790ae28af2c2ac99eae01c2c5044ace4a490a4
Diffstat (limited to 'libs/gui/ISurfaceComposerClient.cpp')
| -rw-r--r-- | libs/gui/ISurfaceComposerClient.cpp | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/libs/gui/ISurfaceComposerClient.cpp b/libs/gui/ISurfaceComposerClient.cpp index bc97cacbe0..ace16aaae4 100644 --- a/libs/gui/ISurfaceComposerClient.cpp +++ b/libs/gui/ISurfaceComposerClient.cpp @@ -132,9 +132,6 @@ status_t ISurfaceComposerClient::surface_data_t::readFromParcel(const Parcel& pa  {      token    = parcel.readInt32();      identity = parcel.readInt32(); -    width    = parcel.readInt32(); -    height   = parcel.readInt32(); -    format   = parcel.readInt32();      return NO_ERROR;  } @@ -142,9 +139,6 @@ status_t ISurfaceComposerClient::surface_data_t::writeToParcel(Parcel* parcel) c  {      parcel->writeInt32(token);      parcel->writeInt32(identity); -    parcel->writeInt32(width); -    parcel->writeInt32(height); -    parcel->writeInt32(format);      return NO_ERROR;  } |