mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 08:18:54 +02:00 
			
		
		
		
	 4c1f57b267
			
		
	
	
		4c1f57b267
		
	
	
	
	
		
			
			Will be used later in this series to remove a cancel dialog that is presented over a tab while Gecko waits for the user to grant geolocation permission in the OS. Differential Revision: https://phabricator.services.mozilla.com/D217015
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			727 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			727 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| /* 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/. */
 | |
| 
 | |
| #include "nsISupports.idl"
 | |
| 
 | |
| webidl BrowsingContext;
 | |
| 
 | |
| /**
 | |
|  * JS utility functions used in display of parts of the geolocation UI.
 | |
|  */
 | |
| [scriptable, uuid(bf4040de-e5e2-4be4-8402-ae0c10c499b6)]
 | |
| interface nsIGeolocationUIUtilsWin : nsISupports
 | |
| {
 | |
|   /**
 | |
|    * Removes prompts that are displayed over the browsing context.  This is
 | |
|    * used to remove the dialog that is presented over content while Gecko
 | |
|    * waits for the user to grant geolocation permission in Windows.
 | |
|    */
 | |
|   void dismissPrompts(in BrowsingContext aBC);
 | |
| };
 |