OSDN Git Service

Revert "Compatibility work around for bad graphics driver dependency."
authorIliyan Malchev <malchev@google.com>
Thu, 27 Sep 2012 22:08:29 +0000 (15:08 -0700)
committerAndroid (Google) Code Review <android-gerrit@google.com>
Thu, 27 Sep 2012 22:52:12 +0000 (15:52 -0700)
This reverts commit a50b51c03aca449920fc8581a738032a7bce7150

Change-Id: Ibdcd776a7f241dbb2475403ea04f939249774c41

include/gui/SurfaceComposerClient.h
libs/gui/SurfaceComposerClient.cpp

index 7a14c6a..bae3886 100644 (file)
@@ -67,11 +67,6 @@ public:
     // Get information about a display
     static status_t getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info);
 
-    // TODO: Remove me.  Do not use.
-    // This is a compatibility shim for one product whose drivers are depending on
-    // this legacy function (when they shouldn't).
-    static status_t getDisplayInfo(int32_t displayId, DisplayInfo* info);
-
     // ------------------------------------------------------------------------
     // surface creation / destruction
 
index 9cf9cb5..4165d01 100644 (file)
@@ -552,15 +552,6 @@ status_t SurfaceComposerClient::getDisplayInfo(
     return ComposerService::getComposerService()->getDisplayInfo(display, info);
 }
 
-// TODO: Remove me.  Do not use.
-// This is a compatibility shim for one product whose drivers are depending on
-// this legacy function (when they shouldn't).
-status_t SurfaceComposerClient::getDisplayInfo(
-        int32_t displayId, DisplayInfo* info)
-{
-    return getDisplayInfo(getBuiltInDisplay(displayId), info);
-}
-
 // ----------------------------------------------------------------------------
 
 ScreenshotClient::ScreenshotClient()