nsIGeolocationUIUtilsWin.idl (727B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #include "nsISupports.idl" 6 7 webidl BrowsingContext; 8 9 /** 10 * JS utility functions used in display of parts of the geolocation UI. 11 */ 12 [scriptable, uuid(bf4040de-e5e2-4be4-8402-ae0c10c499b6)] 13 interface nsIGeolocationUIUtilsWin : nsISupports 14 { 15 /** 16 * Removes prompts that are displayed over the browsing context. This is 17 * used to remove the dialog that is presented over content while Gecko 18 * waits for the user to grant geolocation permission in Windows. 19 */ 20 void dismissPrompts(in BrowsingContext aBC); 21 };