mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-30 22:42:45 +00:00 
			
		
		
		
	 e56eb11dee
			
		
	
	
		e56eb11dee
		
	
	
	
	
		
			
			This is only used for vector graphics format where requesting the true displayed size leads to visual enhancement.
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			897 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			897 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/HashMap.h>
 | |
| #include <ImageDecoder/Forward.h>
 | |
| #include <ImageDecoder/ImageDecoderClientEndpoint.h>
 | |
| #include <ImageDecoder/ImageDecoderServerEndpoint.h>
 | |
| #include <LibIPC/ConnectionFromClient.h>
 | |
| 
 | |
| namespace ImageDecoder {
 | |
| 
 | |
| class ConnectionFromClient final
 | |
|     : public IPC::ConnectionFromClient<ImageDecoderClientEndpoint, ImageDecoderServerEndpoint> {
 | |
|     C_OBJECT(ConnectionFromClient);
 | |
| 
 | |
| public:
 | |
|     ~ConnectionFromClient() override = default;
 | |
| 
 | |
|     virtual void die() override;
 | |
| 
 | |
| private:
 | |
|     explicit ConnectionFromClient(NonnullOwnPtr<Core::LocalSocket>);
 | |
| 
 | |
|     virtual Messages::ImageDecoderServer::DecodeImageResponse decode_image(Core::AnonymousBuffer const&, Optional<Gfx::IntSize> const& ideal_size, Optional<ByteString> const& mime_type) override;
 | |
| };
 | |
| 
 | |
| }
 |