diff options
Diffstat (limited to 'include/gui/ISurface.h')
| -rw-r--r-- | include/gui/ISurface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gui/ISurface.h b/include/gui/ISurface.h index c0ff9fcb1e..ce6e715b3b 100644 --- a/include/gui/ISurface.h +++ b/include/gui/ISurface.h @@ -31,7 +31,7 @@ namespace android { typedef int32_t SurfaceID; -class ISurfaceTexture; +class IGraphicBufferProducer; class ISurface : public IInterface { @@ -43,7 +43,7 @@ protected: public: DECLARE_META_INTERFACE(Surface); - virtual sp<ISurfaceTexture> getSurfaceTexture() const = 0; + virtual sp<IGraphicBufferProducer> getSurfaceTexture() const = 0; }; // ---------------------------------------------------------------------------- |