mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:52:45 +00:00 
			
		
		
		
	 5c5a00dd3a
			
		
	
	
		5c5a00dd3a
		
	
	
	
	
		
			
			These classes are used as-is in all chromes. Move them to LibWebView so that non-Serenity chromes don't have to awkwardly reach into its headers and sources.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, The SerenityOS developers
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Traits.h>
 | |
| 
 | |
| namespace WebView {
 | |
| 
 | |
| class ConsoleClient;
 | |
| class CookieJar;
 | |
| class Database;
 | |
| class History;
 | |
| class OutOfProcessWebView;
 | |
| class ViewImplementation;
 | |
| class WebContentClient;
 | |
| 
 | |
| struct CookieStorageKey;
 | |
| 
 | |
| }
 | |
| 
 | |
| namespace AK {
 | |
| 
 | |
| template<>
 | |
| struct Traits<WebView::CookieStorageKey>;
 | |
| 
 | |
| }
 |