forked from mirrors/gecko-dev
		
	 eb14dd1d2c
			
		
	
	
		eb14dd1d2c
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D15040 --HG-- extra : rebase_source : d89ac470241cb6f6a43c29c6e90b1c0e4fc78028 extra : source : b0444e0bc801f828b49f9953a73498cf5ff5024b
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			518 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			518 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | |
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #ifndef nsDocShellModule_h
 | |
| #define nsDocShellModule_h
 | |
| 
 | |
| #include "nscore.h"
 | |
| 
 | |
| namespace mozilla {
 | |
| 
 | |
| nsresult InitDocShellModule();
 | |
| 
 | |
| void UnloadDocShellModule();
 | |
| 
 | |
| }  // namespace mozilla
 | |
| 
 | |
| #endif
 |