Issue #756 - Remove Contextual Identity from UnifiedComplete

reverts m-c 1287866
This commit is contained in:
Gaming4JC 2019-03-18 18:38:30 -04:00 committed by Roy Tam
commit 50bf383712
6 changed files with 40 additions and 116 deletions

View file

@ -116,10 +116,8 @@ interface mozIPlacesAutoComplete : nsISupports
*
* @param aURI
* The URI to register as an open page.
* @param aUserContextId
* The Container Id of the tab.
*/
void registerOpenPage(in nsIURI aURI, in uint32_t aUserContextId);
void registerOpenPage(in nsIURI aURI);
/**
* Mark a page as no longer being open (either by closing the window or tab,
@ -131,8 +129,6 @@ interface mozIPlacesAutoComplete : nsISupports
*
* @param aURI
* The URI to unregister as an open page.
* @param aUserContextId
* The Container Id of the tab.
*/
void unregisterOpenPage(in nsIURI aURI, in uint32_t aUserContextId);
void unregisterOpenPage(in nsIURI aURI);
};