diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-30 22:09:55 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-30 22:09:55 +0200 |
commit | d45c25971c084ba4afb38cec530f789969d6a338 (patch) | |
tree | de43172c006152a74ef7026c77904a5ab1f0d9e3 /docshell/base/nsDocShell.h | |
parent | f799598d65a59660ef67ed965849853c8e5ca1e6 (diff) | |
download | UXP-d45c25971c084ba4afb38cec530f789969d6a338.tar UXP-d45c25971c084ba4afb38cec530f789969d6a338.tar.gz UXP-d45c25971c084ba4afb38cec530f789969d6a338.tar.lz UXP-d45c25971c084ba4afb38cec530f789969d6a338.tar.xz UXP-d45c25971c084ba4afb38cec530f789969d6a338.zip |
Bug 1182569 - Skip security check for plugins using newstream attribute
Diffstat (limited to 'docshell/base/nsDocShell.h')
-rw-r--r-- | docshell/base/nsDocShell.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docshell/base/nsDocShell.h b/docshell/base/nsDocShell.h index 63a4e3358..f510a15b0 100644 --- a/docshell/base/nsDocShell.h +++ b/docshell/base/nsDocShell.h @@ -201,7 +201,8 @@ public: const nsAString& aFileName, nsIInputStream* aPostDataStream, nsIInputStream* aHeadersDataStream, - bool aIsTrusted) override; + bool aIsTrusted, + nsIPrincipal* aTriggeringPrincipal) override; NS_IMETHOD OnLinkClickSync(nsIContent* aContent, nsIURI* aURI, const char16_t* aTargetSpec, @@ -209,7 +210,8 @@ public: nsIInputStream* aPostDataStream = 0, nsIInputStream* aHeadersDataStream = 0, nsIDocShell** aDocShell = 0, - nsIRequest** aRequest = 0) override; + nsIRequest** aRequest = 0, + nsIPrincipal* aTriggeringPrincipal = nullptr) override; NS_IMETHOD OnOverLink(nsIContent* aContent, nsIURI* aURI, const char16_t* aTargetSpec) override; |