Closed
Bug 1436865
Opened 8 years ago
Closed 8 years ago
Remove nsIDOMCrypto
Categories
(Core :: DOM: Core & HTML, enhancement)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla60
| Tracking | Status | |
|---|---|---|
| firefox60 | --- | fixed |
People
(Reporter: adrian17, Assigned: adrian17)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
Almost empty, one implementation, unused in mozilla-central and comm-central.
| Assignee | ||
Updated•8 years ago
|
| Comment hidden (mozreview-request) |
Comment 2•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8949564 [details]
Bug 1436865 - Remove nsIDOMCrypto.
https://reviewboard.mozilla.org/r/218924/#review224654
Code analysis found 5 defects in this patch:
- 5 defects found by clang-tidy
You can run this analysis locally with:
- `./mach static-analysis check path/to/file.cpp` (C/C++)
If you see a problem in this automated review, please report it here: http://bit.ly/2y9N9Vx
::: dom/base/Crypto.h:28
(Diff revision 1)
> {
> protected:
> virtual ~Crypto();
>
> public:
> - Crypto();
> + Crypto(nsIGlobalObject* aParent);
Error: Bad implicit conversion constructor for 'crypto' [clang-tidy: mozilla-implicit-constructor]
::: dom/base/Crypto.h:28
(Diff revision 1)
> {
> protected:
> virtual ~Crypto();
>
> public:
> - Crypto();
> + Crypto(nsIGlobalObject* aParent);
Error: Bad implicit conversion constructor for 'crypto' [clang-tidy: mozilla-implicit-constructor]
::: dom/base/Crypto.h:28
(Diff revision 1)
> {
> protected:
> virtual ~Crypto();
>
> public:
> - Crypto();
> + Crypto(nsIGlobalObject* aParent);
Error: Bad implicit conversion constructor for 'crypto' [clang-tidy: mozilla-implicit-constructor]
::: dom/base/Crypto.h:28
(Diff revision 1)
> {
> protected:
> virtual ~Crypto();
>
> public:
> - Crypto();
> + Crypto(nsIGlobalObject* aParent);
Error: Bad implicit conversion constructor for 'crypto' [clang-tidy: mozilla-implicit-constructor]
::: dom/base/Crypto.cpp:32
(Diff revision 1)
> NS_IMPL_CYCLE_COLLECTING_ADDREF(Crypto)
> NS_IMPL_CYCLE_COLLECTING_RELEASE(Crypto)
>
> NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(Crypto, mParent, mSubtle)
>
> -Crypto::Crypto()
> +Crypto::Crypto(nsIGlobalObject* aParent)
Error: Bad implicit conversion constructor for 'crypto' [clang-tidy: mozilla-implicit-constructor]
| Comment hidden (mozreview-request) |
Comment 4•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8949564 [details]
Bug 1436865 - Remove nsIDOMCrypto.
https://reviewboard.mozilla.org/r/218924/#review224706
Attachment #8949564 -
Flags: review?(bzbarsky) → review+
Pushed by bzbarsky@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/c3d64a657a71
Remove nsIDOMCrypto. r=bz
Comment 6•8 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox60:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla60
Updated•7 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•