Revert "Issue #756 - Remove Contextual Identity from UnifiedComplete"

This reverts commit 50bf383712.
This commit is contained in:
Roy Tam 2019-04-04 19:35:37 +08:00
commit 979a96c49a
6 changed files with 116 additions and 40 deletions

View file

@ -116,8 +116,10 @@ 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);
void registerOpenPage(in nsIURI aURI, in uint32_t aUserContextId);
/**
* Mark a page as no longer being open (either by closing the window or tab,
@ -129,6 +131,8 @@ 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);
void unregisterOpenPage(in nsIURI aURI, in uint32_t aUserContextId);
};