Closed
Bug 986837
Opened 11 years ago
Closed 11 years ago
Port most of the network stats API to WebIDL
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
FIXED
mozilla32
People
(Reporter: ehsan.akhgari, Assigned: johnshih.bugs)
References
(Blocks 1 open bug)
Details
(Keywords: dev-doc-needed)
Attachments
(6 files, 27 obsolete files)
(deleted),
text/plain
|
Details | |
(deleted),
patch
|
johnshih.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
johnshih.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
johnshih.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
johnshih.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
johnshih.bugs
:
review+
|
Details | Diff | Splinter Review |
We cannot yet port MozNetworkStatsManager as it breaks the Market Place feature detection.
Reporter | ||
Comment 1•11 years ago
|
||
Reporter | ||
Comment 2•11 years ago
|
||
Reporter | ||
Updated•11 years ago
|
Attachment #8395230 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 3•11 years ago
|
||
Reporter | ||
Updated•11 years ago
|
Attachment #8395231 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 4•11 years ago
|
||
Reporter | ||
Updated•11 years ago
|
Attachment #8395232 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395233 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 5•11 years ago
|
||
Comment on attachment 8395230 [details] [diff] [review]
Part 1: Port MozNetworkStatsData to WebIDL; r=bzbarsky
Gotta make this pass tests on try...
Attachment #8395230 -
Attachment is obsolete: true
Attachment #8395230 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395231 -
Attachment is obsolete: true
Attachment #8395231 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395232 -
Attachment is obsolete: true
Attachment #8395232 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395233 -
Attachment is obsolete: true
Attachment #8395233 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 6•11 years ago
|
||
Reporter | ||
Comment 7•11 years ago
|
||
Reporter | ||
Comment 8•11 years ago
|
||
Reporter | ||
Comment 9•11 years ago
|
||
Reporter | ||
Updated•11 years ago
|
Attachment #8395452 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395453 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395454 -
Flags: review?(bzbarsky)
Reporter | ||
Updated•11 years ago
|
Attachment #8395455 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 10•11 years ago
|
||
Green b2g test run: https://tbpl.mozilla.org/?tree=Try&rev=f436abb60c41
Comment 11•11 years ago
|
||
Comment on attachment 8395453 [details] [diff] [review]
Part 2: Port MozNetworkStatsInterface to WebIDL; r=bzbarsky
Shouldn't we have an instanceof check on the argument in addAlarm, like we do in getSamples?
Similar in getAllAlarms and clearStats.
r=me with those added or their lack explained.
Attachment #8395453 -
Flags: review?(bzbarsky) → review+
Comment 12•11 years ago
|
||
Comment on attachment 8395454 [details] [diff] [review]
Part 3: Port MozNetworkStatsAlarm to WebIDL; r=bzbarsky
r=me
Attachment #8395454 -
Flags: review?(bzbarsky) → review+
Comment 13•11 years ago
|
||
Comment on attachment 8395455 [details] [diff] [review]
Part 4: Port MozNetworkStats to WebIDL; r=bzbarsky
This changes the semantics a bit: it'll create a new Date object every time .start or .end is gotten, instead of returning the internal Date object stored in the object. Yes, the WebIDL "Date" type sucks. :( You may want to keep start/end as "object" instead of Date, esp. since they're already content-side Date objects.
r=me with that fixed.
Attachment #8395455 -
Flags: review?(bzbarsky) → review+
Comment 14•11 years ago
|
||
Comment on attachment 8395452 [details] [diff] [review]
Part 1: Port MozNetworkStatsData to WebIDL; r=bzbarsky
Per IRC discussion, I'd like to see a patch merged to tip here.
Attachment #8395452 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 15•11 years ago
|
||
(In reply to Boris Zbarsky [:bz] from comment #11)
> Comment on attachment 8395453 [details] [diff] [review]
> Part 2: Port MozNetworkStatsInterface to WebIDL; r=bzbarsky
>
> Shouldn't we have an instanceof check on the argument in addAlarm, like we
> do in getSamples?
>
> Similar in getAllAlarms and clearStats.
Because I suck!
Reporter | ||
Comment 16•11 years ago
|
||
Reporter | ||
Updated•11 years ago
|
Attachment #8395453 -
Attachment is obsolete: true
Reporter | ||
Comment 17•11 years ago
|
||
Reporter | ||
Updated•11 years ago
|
Attachment #8395455 -
Attachment is obsolete: true
Reporter | ||
Updated•11 years ago
|
Attachment #8395452 -
Attachment is obsolete: true
Reporter | ||
Comment 18•11 years ago
|
||
Reporter | ||
Comment 19•11 years ago
|
||
Comment on attachment 8400246 [details] [diff] [review]
Part 1: Port MozNetworkStatsData to WebIDL; r=bzbarsky
(rebased)
Attachment #8400246 -
Flags: review?(bzbarsky)
Reporter | ||
Comment 20•11 years ago
|
||
New try run: https://tbpl.mozilla.org/?tree=Try&rev=98d4fa501306
Reporter | ||
Comment 21•11 years ago
|
||
Comment on attachment 8400238 [details] [diff] [review]
Part 2: Port MozNetworkStatsInterface to WebIDL; r=bzbarsky
I messed up getAllAlarms() because aNetwork is optional there.
Attachment #8400238 -
Attachment is obsolete: true
Reporter | ||
Comment 22•11 years ago
|
||
Reporter | ||
Comment 23•11 years ago
|
||
Comment 24•11 years ago
|
||
Comment on attachment 8400246 [details] [diff] [review]
Part 1: Port MozNetworkStatsData to WebIDL; r=bzbarsky
The "date" member should probably be of type "object" with a comment about how IDL Date doesn't do what you'd think...
r=me
Attachment #8400246 -
Flags: review?(bzbarsky) → review+
Reporter | ||
Comment 25•11 years ago
|
||
This test: <http://mxr.mozilla.org/mozilla-central/source/dom/network/tests/test_networkstats_alarms.html?force=1#41> suggests that I should not check the network argument to getAllAlarms at all. What do you think, Boris? Is that fine with you? (It's a very weird API I've got to say...)
Flags: needinfo?(bzbarsky)
Comment 26•11 years ago
|
||
> What do you think, Boris?
I think you need to talk to whoever created this API. It's possible that they mean the argument to getAllAlarms() (and perhaps some of the others) to be a dictionary, not an interface, but simply couldn't express that in xpidl. Or it's possible that the test is just wrong.
Flags: needinfo?(jonas)
Flags: needinfo?(bzbarsky)
Flags: needinfo?(acperez)
Comment 27•11 years ago
|
||
And in particular, note that scriptable xpidl interfaces just accept any object so can act a lot more like dictionaries than interfaces....
Reporter | ||
Comment 28•11 years ago
|
||
OK, so we cannot do this check on addAlarm either if we want to maintain the current behavior. :(
<https://tbpl.mozilla.org/?tree=Try&rev=eed559f67b5a>
<https://tbpl.mozilla.org/php/getParsedLog.php?id=37142274&tree=Try#error0>
<http://mxr.mozilla.org/mozilla-central/source/dom/network/tests/test_networkstats_alarms.html?force=1#78>
It really looks like the network interface is supposed to be a dictionary, which basically means I should rewrite part if not all of my patches here.
Flags: needinfo?(jonas)
Reporter | ||
Comment 29•11 years ago
|
||
Borting, do you know who would be the right person to answer comment 26? Thanks!
Flags: needinfo?(bochen)
Assignee | ||
Comment 30•11 years ago
|
||
(In reply to :Ehsan Akhgari (lagging on bugmail, needinfo? me!) from comment #29)
> Borting, do you know who would be the right person to answer comment 26?
> Thanks!
Hi Ehsan,
I think we just take nsIDOMMozNetworkStatsInterface as a dictionary, instead of an interface. We don't do anything special in NetworkStatsService after receiving the network argument (i.g., it is just taken as a js obeject without going trough any interface query). I bet that's why the test failed.
Reporter | ||
Comment 31•11 years ago
|
||
OK, thanks John.
So, MozNetworkStatsInterface is used as a readonly attribute in other parts of this API (for example, MozNetworkStats.network). Should I convert them to be |object| or something?
Assignee | ||
Comment 32•11 years ago
|
||
(In reply to :Ehsan Akhgari (lagging on bugmail, needinfo? me!) from comment #31)
> OK, thanks John.
>
> So, MozNetworkStatsInterface is used as a readonly attribute in other parts
> of this API (for example, MozNetworkStats.network).
Yes. In the previous API version, we only use a single string to specify 'wifi' or 'mobile'. Then, due the requirement of supporting mult-sim, we change the argument to the combination of connection type and icc id.
> Should I convert them to be |object| or something?
I think it's fine!
Assignee | ||
Comment 33•11 years ago
|
||
(In reply to John Shih from comment #32)
> (In reply to :Ehsan Akhgari (lagging on bugmail, needinfo? me!) from comment
> #31)
> > OK, thanks John.
> >
> > So, MozNetworkStatsInterface is used as a readonly attribute in other parts
> > of this API (for example, MozNetworkStats.network).
>
> Yes. In the previous API version, we only use a single string to specify
> 'wifi' or 'mobile'. Then, due the requirement of supporting mult-sim, we
> change the argument to the combination of connection type and icc id.
>
> > Should I convert them to be |object| or something?
>
> I think it's fine!
I mean, just make it compatible with js object ;)
Comment 34•11 years ago
|
||
You could leave the interface for return values if you want, btw. That's just an API design decision... (e.g. in terms of whether we want all the return values to share a proto that's not just Object.prototype).
Comment 35•11 years ago
|
||
(In reply to Boris Zbarsky [:bz] from comment #26)
> > What do you think, Boris?
>
> I think you need to talk to whoever created this API. It's possible that
> they mean the argument to getAllAlarms() (and perhaps some of the others) to
> be a dictionary, not an interface, but simply couldn't express that in
> xpidl. Or it's possible that the test is just wrong.
Hi guys,
MozNetworkStatsInterface was designed to be an interface not a dictionary. I think there is a mistake in the implementation of the tests. In costcontrol it is used as an interface.
Flags: needinfo?(acperez)
Comment 36•11 years ago
|
||
OK. Note that the costcontrol tests in gaia also treat it as a dictionary, because they're not passing in actual MozNetworkStatsInterface objects... But as far as I can tell, the actual costcontrol app is in fact passing in interface instances.
Comment 37•11 years ago
|
||
(In reply to Boris Zbarsky [:bz] from comment #36)
> OK. Note that the costcontrol tests in gaia also treat it as a dictionary,
> because they're not passing in actual MozNetworkStatsInterface objects...
> But as far as I can tell, the actual costcontrol app is in fact passing in
> interface instances.
Then they had the same mistake regarding the tests, because I just ask them to ensure they are using the interface and they say yes. I'm gonna to advice them.
Comment 38•11 years ago
|
||
(In reply to Boris Zbarsky [:bz] from comment #36)
> OK. Note that the costcontrol tests in gaia also treat it as a dictionary,
> because they're not passing in actual MozNetworkStatsInterface objects...
> But as far as I can tell, the actual costcontrol app is in fact passing in
> interface instances.
If you define it as a interface I'm going to open a bug to modify costcontrol tests because we are going to have problems when your patches land. Are you agree?
Comment 39•11 years ago
|
||
If we start enforcing it being an interface then we need to fix the tests, yes.
Reporter | ||
Comment 40•11 years ago
|
||
OK, so I read up to comment 33, spent some time to rewrite parts 2-4 based on that, and came here to attach my patches just to see that we want this to be an interface again. I'm going to give up, attach my patches, and let someone else do what they will with them.
Here's the latest try run with MozNetworkStatsInterface being a dictionary: https://tbpl.mozilla.org/?tree=Try&rev=a338dbf49c86
Assignee: ehsan → nobody
Reporter | ||
Comment 41•11 years ago
|
||
Reporter | ||
Comment 42•11 years ago
|
||
Reporter | ||
Comment 43•11 years ago
|
||
Reporter | ||
Comment 44•11 years ago
|
||
(Note to the next person, the three recent patches should probably be reviewed again if you want to use them.)
Comment 45•11 years ago
|
||
I would appreciate whoever owns this API stepping up and fixing it... Albert, do you know who that is?
Flags: needinfo?(acperez)
Assignee | ||
Comment 46•11 years ago
|
||
Albert, if you don't mind I can work on this, which I think it was almost done by Ehsan.
Assignee: nobody → jshih
Assignee | ||
Comment 47•11 years ago
|
||
Attachment #8400246 -
Attachment is obsolete: true
Attachment #8402566 -
Flags: review?(bzbarsky)
Assignee | ||
Comment 48•11 years ago
|
||
Attachment #8402002 -
Attachment is obsolete: true
Attachment #8402567 -
Flags: review?(bzbarsky)
Assignee | ||
Comment 49•11 years ago
|
||
Attachment #8395454 -
Attachment is obsolete: true
Attachment #8400369 -
Attachment is obsolete: true
Attachment #8402003 -
Attachment is obsolete: true
Attachment #8402569 -
Flags: review?(bzbarsky)
Assignee | ||
Comment 50•11 years ago
|
||
Attachment #8400245 -
Attachment is obsolete: true
Attachment #8402004 -
Attachment is obsolete: true
Attachment #8402571 -
Flags: review?(bzbarsky)
Comment 51•11 years ago
|
||
I think you are already working on it. It is fine :)
Let me know if you need any help
Flags: needinfo?(acperez)
Assignee | ||
Comment 52•11 years ago
|
||
(In reply to Albert [:albert] from comment #51)
> I think you are already working on it. It is fine :)
>
> Let me know if you need any help
The remaining problem is in test_networkstats_alarms.html.
As previous discussion, we now should use real MozNetworkStatsInterface instead of js object for testing getAllAlarms(). But I'm not sure if we can create that instance directly...
Comment 53•11 years ago
|
||
(In reply to John Shih from comment #52)
> (In reply to Albert [:albert] from comment #51)
> > I think you are already working on it. It is fine :)
> >
> > Let me know if you need any help
>
> The remaining problem is in test_networkstats_alarms.html.
> As previous discussion, we now should use real MozNetworkStatsInterface
> instead of js object for testing getAllAlarms(). But I'm not sure if we can
> create that instance directly...
Same problem in costcontrol tests, we can't create an instance, we need to expose the MozNetworkStatsInterface, like mozContact for example.
Assignee | ||
Comment 54•11 years ago
|
||
Reporter | ||
Comment 55•11 years ago
|
||
Comment on attachment 8403141 [details] [diff] [review]
Bug 986836 - Part 5: Expose MozNetworkInterface for testing. r=bzbarsky
I'm not sure what this patch is trying to achieve but we almost definitely don't want to have both an interface and a dictionary to specify the same thing.
Comment 56•11 years ago
|
||
> but we almost definitely don't want to have both an interface and a dictionary to specify
> the same thing
We may in fact want just that if we want to have a canonical interface thing we return but want to accept anything that quacks a certain way.
Assignee | ||
Comment 57•11 years ago
|
||
Patch update. The test passed on my local test.
Attachment #8403141 -
Attachment is obsolete: true
Attachment #8403857 -
Flags: review?(bzbarsky)
Assignee | ||
Comment 58•11 years ago
|
||
Reporter | ||
Comment 59•11 years ago
|
||
(In reply to comment #56)
> > but we almost definitely don't want to have both an interface and a dictionary to specify
> > the same thing
>
> We may in fact want just that if we want to have a canonical interface thing we
> return but want to accept anything that quacks a certain way.
That's a bit mind-bending... but sure.
Comment 60•11 years ago
|
||
Comment on attachment 8402566 [details] [diff] [review]
Bug 986837 - Part 1: Port MozNetworkStatsData to WebIDL. r=bzbarsky
Sorry this took so long....
r=me
Attachment #8402566 -
Flags: review?(bzbarsky) → review+
Comment 61•11 years ago
|
||
Comment on attachment 8402567 [details] [diff] [review]
Bug 986837 - Part 2: Port MozNetworkStatsInterface to WebIDL. r=bzbarsky
Need to rev the IIDs of nsIDOMMozNetworkStats and nsIDOMMozNetworkStatsAlarm.
>+ nsIDOMDOMRequest getSamples(in jsval network,
I believe that needs to be nsISupports, not jsval, for the instanceof test it does to mean anything.
>+ nsIDOMDOMRequest addAlarm(in jsval network,
Why doesn't this need an instanceof test? If it means to accept arbitrary objects that quack a certain way, please document that.
>+ nsIDOMDOMRequest getAllAlarms([optional] in jsval network);
Similar.
>+ nsIDOMDOMRequest clearStats(in jsval network);
And here.
>+ // This should be used when passing network objects to the parent process.
The comment should explain why. Is it because we end up structured cloning? Does that ignore toJSON methods, so adding "jsonifier" on the interface would not help?
>+ // MozNetworkStatsInterface launch an exception
"throw", not "launch".
r=me with those dealt with.
Attachment #8402567 -
Flags: review?(bzbarsky) → review+
Comment 62•11 years ago
|
||
Comment on attachment 8402569 [details] [diff] [review]
Bug 986837 - Part 3: Port MozNetworkStatsAlarm to WebIDL. r=bzbarsky
r=me
Attachment #8402569 -
Flags: review?(bzbarsky) → review+
Comment 63•11 years ago
|
||
Comment on attachment 8402571 [details] [diff] [review]
Bug 986837 - Part 4: Port MozNetworkStats to WebIDL. r=bzbarsky
>+ readonly attribute Date start;
>+ readonly attribute Date end;
See comment 13.
r=me with that fixed.
Attachment #8402571 -
Flags: review?(bzbarsky) → review+
Comment 64•11 years ago
|
||
Comment on attachment 8403857 [details] [diff] [review]
Bug 986836 - Part 5: Expose MozNetworkInterface for testing. r=bzbarsky
I would think the constructor argument here should be a dictionary, not "any".
I also assume that in practice HasNetworkStatsSupport returns false for web pages and the like, right?
r=me with the constructor argument fixed if that assumption is correct.
Attachment #8403857 -
Flags: review?(bzbarsky) → review+
Updated•11 years ago
|
Flags: needinfo?(bochen)
Assignee | ||
Comment 65•11 years ago
|
||
patch revised. r=bz
Attachment #8402566 -
Attachment is obsolete: true
Attachment #8414962 -
Flags: review+
Assignee | ||
Comment 66•11 years ago
|
||
Boris, could you take one more look to make sure the modification works for you? Thanks!
Attachment #8402567 -
Attachment is obsolete: true
Attachment #8414963 -
Flags: review?(bzbarsky)
Assignee | ||
Comment 67•11 years ago
|
||
patch revised. r=bz
Attachment #8402569 -
Attachment is obsolete: true
Attachment #8414964 -
Flags: review+
Assignee | ||
Comment 68•11 years ago
|
||
patch revised. r=bz
Attachment #8402571 -
Attachment is obsolete: true
Attachment #8414965 -
Flags: review+
Assignee | ||
Comment 69•11 years ago
|
||
Hi Boris,
According to Comment 64, I think change 'any' to 'dictionary' doesn't work (or we may need a redundant dictionary as I did in previous patch [1]). So I just change 'any' to 'object' here, what do you think?
By the way, I'm little confused with the assumption you mentioned (i.e.,
I also assume that in practice HasNetworkStatsSupport returns false for web pages and the like, right?). If it returns false for web pages, how could we use it in mochitest? Can you also clarify on this? Really appreciate!
[1] https://bugzilla.mozilla.org/page.cgi?id=splinter.html&bug=986837&attachment=8403141
Attachment #8403857 -
Attachment is obsolete: true
Attachment #8414968 -
Flags: review?(bzbarsky)
Comment 70•11 years ago
|
||
Comment on attachment 8414963 [details] [diff] [review]
Bug 986837 - Part 2: Port MozNetworkStatsInterface to WebIDL. r=bzbarsky
What exact modifications did you make? Please post an interdiff against the last version I reviewed.
Flags: needinfo?(jshih)
Comment 71•11 years ago
|
||
> I think change 'any' to 'dictionary' doesn't work
Why not?
> or we may need a redundant dictionary
Redundant in what sense?
> So I just change 'any' to 'object' here, what do you think?
I think that doesn't help anything. Have you audited the code to make sure it's OK with this.type and this.id being arbitrary page-controlled objects?
> If it returns false for web pages, how could we use it in mochitest?
Mochitest presumably sets the permissions. What I was assuming is that normal web pages never have that permission.
Assignee | ||
Comment 73•11 years ago
|
||
(In reply to Boris Zbarsky [:bz] from comment #71)
> I think that doesn't help anything. Have you audited the code to make sure
> it's OK with this.type and this.id being arbitrary page-controlled objects?
>
Hmm, I know your concern and just realize that you supported my previous patch (Comment 56).
I'll change back to it.
> > If it returns false for web pages, how could we use it in mochitest?
>
> Mochitest presumably sets the permissions. What I was assuming is that
> normal web pages never have that permission.
Got it, you are right.
Assignee | ||
Comment 74•11 years ago
|
||
Attachment #8414968 -
Attachment is obsolete: true
Attachment #8414968 -
Flags: review?(bzbarsky)
Attachment #8415054 -
Flags: review?(bzbarsky)
Comment 75•11 years ago
|
||
Comment on attachment 8415036 [details]
bug_986837_part2_diff.txt
Thanks.
You still need to rev the IIDs. Please do make sure to do that before landing!
Comment 76•11 years ago
|
||
Comment on attachment 8414963 [details] [diff] [review]
Bug 986837 - Part 2: Port MozNetworkStatsInterface to WebIDL. r=bzbarsky
r=me if you rev the IIDs.
Attachment #8414963 -
Flags: review?(bzbarsky) → review+
Comment 77•11 years ago
|
||
Comment on attachment 8415054 [details] [diff] [review]
Bug 986837 - Part 5: Expose MozNetworkInterface for testing. r=bzbarsky
r=me
Attachment #8415054 -
Flags: review?(bzbarsky) → review+
Assignee | ||
Comment 78•11 years ago
|
||
rebase. r=bz
Attachment #8414962 -
Attachment is obsolete: true
Attachment #8417315 -
Flags: review+
Assignee | ||
Comment 79•11 years ago
|
||
rev IIDs. r=bz
Attachment #8414963 -
Attachment is obsolete: true
Attachment #8417316 -
Flags: review+
Assignee | ||
Comment 80•11 years ago
|
||
rebase. r=bz
Attachment #8414964 -
Attachment is obsolete: true
Attachment #8417317 -
Flags: review+
Assignee | ||
Comment 81•11 years ago
|
||
rebase. r=bz
Attachment #8414965 -
Attachment is obsolete: true
Attachment #8417319 -
Flags: review+
Assignee | ||
Comment 82•11 years ago
|
||
rebase. r=bz
Attachment #8415054 -
Attachment is obsolete: true
Attachment #8417321 -
Flags: review+
Assignee | ||
Comment 83•11 years ago
|
||
test result: https://tbpl.mozilla.org/?tree=Try&rev=61facc8b71a6
Keywords: checkin-needed
Comment 84•11 years ago
|
||
https://hg.mozilla.org/integration/b2g-inbound/rev/52bbcb23a7cc
https://hg.mozilla.org/integration/b2g-inbound/rev/41a097ac9d6f
https://hg.mozilla.org/integration/b2g-inbound/rev/2ececf8578f4
https://hg.mozilla.org/integration/b2g-inbound/rev/28d11c3268d3
Keywords: checkin-needed
Comment 85•11 years ago
|
||
Part 5 had the wrong bug number originally.
https://hg.mozilla.org/integration/b2g-inbound/rev/fdd739afef78
Assignee | ||
Comment 86•11 years ago
|
||
(In reply to Ryan VanderMeulen [:RyanVM UTC-4] from comment #85)
> Part 5 had the wrong bug number originally.
> https://hg.mozilla.org/integration/b2g-inbound/rev/fdd739afef78
Thanks for correcting that!
Reporter | ||
Comment 87•11 years ago
|
||
Thanks John for finishing this!
https://hg.mozilla.org/mozilla-central/rev/52bbcb23a7cc
https://hg.mozilla.org/mozilla-central/rev/41a097ac9d6f
https://hg.mozilla.org/mozilla-central/rev/2ececf8578f4
https://hg.mozilla.org/mozilla-central/rev/28d11c3268d3
https://hg.mozilla.org/mozilla-central/rev/fdd739afef78
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla32
Comment 89•10 years ago
|
||
These changes made https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIDOMMozNetworkStats mostly lies as far as I can tell... We need to update the docs.
Keywords: dev-doc-needed
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•