Closed
Bug 774556
Opened 13 years ago
Closed 13 years ago
Remove nsIDOMWindowPerformance* XPCOM interfaces
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
FIXED
mozilla17
People
(Reporter: ehsan.akhgari, Assigned: ehsan.akhgari)
Details
(Keywords: dev-doc-needed)
Attachments
(1 file, 1 obsolete file)
21.12 KB,
patch
|
bzbarsky
:
review+
|
Details | Diff | Splinter Review |
This is a follow-up to bug 749101. We don't have any native code which depends on these interfaces, so we should just kill them.
Assignee | ||
Comment 1•13 years ago
|
||
This patch removes these interfaces, but with it, window.performance returns undefined. I guess that happens because nsIDOMWindow::GetPerformance now returns an nsISupports*. Boris, do you know what I need to do in order to fix that?
Comment 2•13 years ago
|
||
Comment on attachment 642840 [details] [diff] [review]
Patch (v1)
This looks fine in general. The undefined bit is due to this change:
- DOM_CLASSINFO_MAP_CONDITIONAL_ENTRY(nsIDOMWindowPerformance, \
- nsGlobalWindow::HasPerformanceSupport()) \
which makes Window not implement that interface as far as script is concerned. You should revert it that part.
Attachment #642840 -
Flags: feedback?(bzbarsky) → feedback+
Assignee | ||
Comment 3•13 years ago
|
||
(In reply to comment #2)
> Comment on attachment 642840 [details] [diff] [review]
> --> https://bugzilla.mozilla.org/attachment.cgi?id=642840
> Patch (v1)
>
> This looks fine in general. The undefined bit is due to this change:
>
> - DOM_CLASSINFO_MAP_CONDITIONAL_ENTRY(nsIDOMWindowPerformance,
> \
> - nsGlobalWindow::HasPerformanceSupport())
> \
>
> which makes Window not implement that interface as far as script is concerned.
> You should revert it that part.
I tried to put that part back in using nsISupports, but window.performance is still undefined...
Assignee | ||
Comment 4•13 years ago
|
||
(In reply to comment #2)
> Comment on attachment 642840 [details] [diff] [review]
> --> https://bugzilla.mozilla.org/attachment.cgi?id=642840
> Patch (v1)
>
> This looks fine in general. The undefined bit is due to this change:
>
> - DOM_CLASSINFO_MAP_CONDITIONAL_ENTRY(nsIDOMWindowPerformance,
> \
> - nsGlobalWindow::HasPerformanceSupport())
> \
>
> which makes Window not implement that interface as far as script is concerned.
> You should revert it that part.
I tried to put that part back in using nsISupports, but window.performance is still undefined...
Comment 5•13 years ago
|
||
Just put it back exactly the way it was. nsIDOMWindowPerformance is not one of the interfaces you're removing...
Assignee | ||
Updated•13 years ago
|
Keywords: dev-doc-needed
Assignee | ||
Comment 6•13 years ago
|
||
Oops, you're right!
Attachment #642840 -
Attachment is obsolete: true
Attachment #642859 -
Flags: review?(bzbarsky)
Comment 7•13 years ago
|
||
Comment on attachment 642859 [details] [diff] [review]
Patch (v1)
It might not be a bad idea to put the constants in the mozilla::dom::PerformanceNavigation namespace or the nsPerformanceNavigation class or something.
r=me
Attachment #642859 -
Flags: review?(bzbarsky) → review+
Assignee | ||
Comment 8•13 years ago
|
||
Target Milestone: --- → mozilla17
Comment 9•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•