mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:22:43 +00:00 
			
		
		
		
	 aed695d4b2
			
		
	
	
		aed695d4b2
		
	
	
	
	
		
			
			It was very confusing for every Tab to have their own GUI::Menubar that got dynamically swapped in/out when switching tabs. This change moves us to a single menubar per window, and BrowserWindow is the owner of its own menubar.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| 
 | |
| namespace Browser {
 | |
| 
 | |
| extern bool g_single_process;
 | |
| extern String g_home_url;
 | |
| extern String g_search_engine;
 | |
| 
 | |
| }
 |