summaryrefslogtreecommitdiff
path: root/Userland/Services/ImageDecoder/ClientConnection.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-16 23:58:57 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-16 23:58:57 +0100
commit447e6da52c319a012cd877346b936fb109f64527 (patch)
treeee6ce8720eb8c67b24869cd1c7866b9686f08f87 /Userland/Services/ImageDecoder/ClientConnection.h
parent8a61aba1e53d93521319be093eaff6d2e7db83b3 (diff)
downloadserenity-447e6da52c319a012cd877346b936fb109f64527.zip
ImageDecoder: Use Core::AnonymousBuffer and Gfx::ShareableBitmap
...instead of sending shbufs back and forth. :^)
Diffstat (limited to 'Userland/Services/ImageDecoder/ClientConnection.h')
-rw-r--r--Userland/Services/ImageDecoder/ClientConnection.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Services/ImageDecoder/ClientConnection.h b/Userland/Services/ImageDecoder/ClientConnection.h
index 1447c3b063..c5e5cfc8ce 100644
--- a/Userland/Services/ImageDecoder/ClientConnection.h
+++ b/Userland/Services/ImageDecoder/ClientConnection.h
@@ -49,8 +49,6 @@ public:
private:
virtual OwnPtr<Messages::ImageDecoderServer::GreetResponse> handle(const Messages::ImageDecoderServer::Greet&) override;
virtual OwnPtr<Messages::ImageDecoderServer::DecodeImageResponse> handle(const Messages::ImageDecoderServer::DecodeImage&) override;
-
- RefPtr<Gfx::Bitmap> m_shareable_bitmap;
};
}