mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:12:45 +00:00 
			
		
		
		
	 ceccc2c163
			
		
	
	
		ceccc2c163
		
	
	
	
	
		
			
			This patch adds WebView::ViewImplementation with all the `notify_server_did_this_or_that()` functions from OOPWV. This will allow us to share code between different web views, paving the way for a Qt widget in Ladybird that can talk to a WebContent process.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			216 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			216 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, The SerenityOS developers
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| namespace WebView {
 | |
| 
 | |
| class OutOfProcessWebView;
 | |
| class ViewImplementation;
 | |
| class WebContentClient;
 | |
| 
 | |
| }
 |