Bug 1417976 - Part 2: Include DocShell IDs to marker payloads r=mstange

MozReview-Commit-ID: AML1ESUnFlu

Depends on D4914

Differential Revision: https://phabricator.services.mozilla.com/D4915
This commit is contained in:
Nazım Can Altınova
2018-11-06 21:45:50 +00:00
parent 670614c344
commit 446a489515
14 changed files with 274 additions and 69 deletions

View File

@@ -13782,6 +13782,17 @@ nsDocShell::SetOriginAttributes(JS::Handle<JS::Value> aOriginAttributes,
return SetOriginAttributes(attrs);
}
NS_IMETHODIMP
nsDocShell::GetOSHEId(uint32_t* aSHEntryId)
{
if (mOSHE) {
mOSHE->GetID(aSHEntryId);
return NS_OK;
} else {
return NS_ERROR_FAILURE;
}
}
NS_IMETHODIMP
nsDocShell::GetAsyncPanZoomEnabled(bool* aOut)
{