/irc-logs / mozilla / #developers / 2012-12-13 / end

Options:

  1. # Session Start: Thu Dec 13 00:00:00 2012
  2. # Session Ident: #developers
  3. # [00:00] <jrmuizel> avih: which times are you all measuring?
  4. # [00:00] * Quits: KWierso|Surface (~KWiersoSu@2557E599.66715431.D25A875A.IP) (Ping timeout)
  5. # [00:00] <jdm> jduell: some kind of interaction like that, yeah.
  6. # [00:00] * Quits: smagnin (pike@moz-8CEB8724.fbx.proxad.net) (Client exited)
  7. # [00:00] <jrmuizel> avih: i.e. where's mMostRecentRefresh set?
  8. # [00:00] * Quits: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP) (Quit: Computer has gone to sleep.)
  9. # [00:00] * Quits: joey-away (chatzilla@moz-EFCB4CBF.princetowncable.com) (Quit: ChatZilla 0.9.89 [Firefox 19.0a2/20121210042017])
  10. # [00:00] <avih> jrmuizel: i'm measuring intervals between ProcessPendingUpdates(); and the durtion of the update itself, which includes the paints.
  11. # [00:00] * Quits: mikeratcliffe (mikeratcli@4A243A44.5BBD191C.7CCB197A.IP) (Ping timeout)
  12. # [00:01] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/095d4a9bcd6c - Benoit Girard - Bug 820951 - Bustage fix. r=ehsan
  13. # [00:01] <avih> jrmuizel: at the begining of that function (Notify())
  14. # [00:01] <jrmuizel> avih: mMostRecentRefresh is only read in the patch you posted
  15. # [00:02] <avih> jrmuizel: and the delta between mMostRecentUpdate to just before mViewManagerFlushIsPending = false; is typically 0-0.2ms
  16. # [00:02] <avih> jrmuizel: yes, it's updated earlier at that function regardless of my patch
  17. # [00:02] <bsmith> froydnj: in https://bugzilla.mozilla.org/show_bug.cgi?id=799267#c25 are you saying that telemetry is thread-safe now?
  18. # [00:02] <jrmuizel> avih: ah...
  19. # [00:02] <@ehsan> BenWa: oh I reviewed that patch?! :P
  20. # [00:02] <bsmith> because, I thought I remember many warnings about it being not thread safe.
  21. # [00:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7ed78ee40e0e - Aaron Klotz - Bug 810101 - Add readahead to safebrowsing .sbstore and .cache files. r=gpascutto
  22. # [00:03] <jrmuizel> avih: right ok
  23. # [00:03] <BenWa> ehsan: I asked
  24. # [00:03] <@ehsan> BenWa: I know, just teasing you ;)
  25. # [00:04] <BenWa> ehsan: I wouldn't do that. I might troll you back
  26. # [00:04] * Joins: Austin__1 (austin@B65F78B7.1356EECA.2170E5F.IP)
  27. # [00:04] <avih> jrmuizel: initially i collected a timestamp of my own, but later noticed it's not neccessary since at our resolution mMostRecentRefresh is practically the same.
  28. # [00:05] * Quits: Austin__ (austin@B65F78B7.1356EECA.2170E5F.IP) (Ping timeout)
  29. # [00:05] <jrmuizel> avih: so it might make the most sense to just pass mMostRecentRefresh down to the infrastructure in the LayerManager
  30. # [00:05] <@ehsan> BenWa: challenge accepted :P
  31. # [00:06] <jrmuizel> though I'm not entirely sure where it make the most sense to be measuring these times
  32. # [00:06] <avih> jrmuizel: what would that give?
  33. # [00:06] * Quits: Austin__1 (austin@B65F78B7.1356EECA.2170E5F.IP) (Ping timeout)
  34. # [00:06] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Quit: randix)
  35. # [00:06] <bsmith> ehsan jdm: what tests failed on mozilla-central that motivated the last backout?
  36. # [00:06] <jrmuizel> avih: the other thing that we need to consider here is off-main-thread-compositing
  37. # [00:06] <@ehsan> let me dig that up
  38. # [00:06] * Quits: pnemsak (Miranda@moz-192A9791.orange.sk) (Quit: pnemsak)
  39. # [00:07] <jrmuizel> avih: i.e. ProcessPendingUpdates() will return before the frames have actually appeared on the screen
  40. # [00:07] <jdm> bsmith: lots of mochitests that leaked the mutex at first, then lots of xpcshell tests that segfaulted on a null mutex pointer
  41. # [00:07] <@ehsan> bsmith: https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=a5c2323ca151
  42. # [00:07] <avih> jrmuizel: i know about OMTC but too new to mozilla to understand its implications on these measurements
  43. # [00:08] <avih> jrmuizel: ah, it will post an event to the composition thread and the layout flushing and paint will be done there?
  44. # [00:08] <mjrosenb> sewardj: ping?
  45. # [00:08] * Joins: redfive (chatzilla@A1DA5D8F.215E7E3E.4989C8B.IP)
  46. # [00:08] <jrmuizel> avih: currently I like the fact that we try to get a timestamp in the layer manager immediately after we put the frame on the screen
  47. # [00:08] <avih> jrmuizel: agreed
  48. # [00:08] <jrmuizel> i.e. the timestamp should be very close to what the actual user sees
  49. # [00:09] <avih> indeed that's valueable
  50. # [00:09] <jrmuizel> avih: howerver, we currently don't have any idea when the paint started which is what mMostRecentRefresh contains (right?)
  51. # [00:09] * Joins: mikeratcliffe (mikeratcli@11CD187.4788BC2C.7CCB197A.IP)
  52. # [00:09] <bsmith> jdm: wow, this patch just gets more and more complicated, huh?
  53. # [00:10] <avih> jst: not always, but when it paints, then yes
  54. # [00:10] * Quits: dao (dao@moz-DE32E385.superkabel.de) (Quit: Leaving.)
  55. # [00:10] <jdm> bsmith: yeah, tell me about it. It's super awkward because some of it relies on NSS initialization, and some needs to work without it
  56. # [00:10] <avih> (mMostRecentRefresh can update more frequently than paints)
  57. # [00:10] <avih> (as far as i can tell)
  58. # [00:10] <jrmuizel> avih: ok...
  59. # [00:10] <avih> oops..
  60. # [00:11] <jrmuizel> anyways what happens with OMTC is that ProcessPendingUpdates() will do all the painting on the main thread and then tell the compositing thread what needs to be composited
  61. # [00:11] <jrmuizel> the compositing thread will composite that stuff as soon as it can
  62. # [00:12] <avih> jrmuizel: so, per chrome window there's only one painting refresh driver, right? (the one of the IsChrome()==true presContext)
  63. # [00:12] <anton> does anyone know why would ./mach mochitest-browser spit out tons of logs (e.g. http://cl.ly/image/0J2K3o193q3V) instead of actually running tests? opt builds work fine
  64. # [00:12] <jrmuizel> avih: I don't quite understand your question?
  65. # [00:12] <jrmuizel> s/?//
  66. # [00:13] <avih> jrmuizel: i was referring to the issue of connecting a layer manager to the correct refresh driver for its mMostRecentRefresh
  67. # [00:13] <@smaug> avih: chrome has its own refresh driver and content its own. vlad is changing that
  68. # [00:13] * Quits: armenzg_dinner (armenzg@70EBC643.20A103FD.72A31D6.IP) (Input/output error)
  69. # [00:14] <avih> smaug: yes, i follow vlad's patch.
  70. # [00:14] <@smaug> k
  71. # [00:14] <jrmuizel> avih: and each presshell/refreshdriver will be associated with a particular layermanager
  72. # [00:15] <@khuey> is there a way to turn nspr logging on on tinderbox?
  73. # [00:15] <avih> jrmuizel: but is the other way around valid as well? can you get from a layer manager to the painting refresh driver?
  74. # [00:15] <jrmuizel> avih: no
  75. # [00:15] <jrmuizel> avih: I don't believe so
  76. # [00:15] * Quits: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net) (Quit: Leaving.)
  77. # [00:16] * mdas is now known as mdas|afk
  78. # [00:16] <jrmuizel> avih: I'd expect especially so with OMTC
  79. # [00:16] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/263214638d26 - Axel Hecht - bug 817197, add multiple locales to packaging, like android, r=glandium, a=bb+
  80. # [00:16] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/d1c7dfa26a77 - Axel Hecht - bug 796051, add chrome-% target to package b2g localized files, r=fabrice, a=bb+
  81. # [00:16] <avih> jrmuizel: and yes, i see your point that the measuring at the refresh driver will be invalid with OMTC..
  82. # [00:16] * Joins: cilias_ (cilias@moz-D8CAF7D8.cpe.net.cable.rogers.com)
  83. # [00:16] <avih> at least measuring of the processing
  84. # [00:16] * Quits: cilias_ (cilias@moz-D8CAF7D8.cpe.net.cable.rogers.com) (Quit: cilias_)
  85. # [00:17] <gps> anton: looks like you have some logging options enabled in your build?
  86. # [00:17] * Quits: cilias (cilias@EA6896F5.81C579B6.DA78B690.IP) (Ping timeout)
  87. # [00:17] <avih> jrmuizel: how far are we in your opinion from landing OMTC?
  88. # [00:17] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  89. # [00:17] <gps> is mach's output different from |mach mochitest-browser| ?
  90. # [00:17] <jrmuizel> avih: we already ship it on Android and B2G
  91. # [00:17] <gps> I mean |make mochitest-browser|
  92. # [00:18] <jrmuizel> avih: desktop is a little ways away
  93. # [00:18] <avih> jrmuizel: ok, so even as a temporary facility it would be short lived. so, not good indeed.
  94. # [00:18] * Joins: Boriss (FlyingToas@A01051A9.6F669779.3D1CA460.IP)
  95. # [00:18] * Joins: coyotebush (corey@moz-31CC2724.dsl.dynamic.sonic.net)
  96. # [00:19] <jrmuizel> avih: are there advantages to recording this information in the refresh driver?
  97. # [00:19] <anton> gps: i dont have anything specific, no. my .mozconfig is pretty simple
  98. # [00:19] * Joins: jdm_ (jdm@F2D29657.F60B0462.67AC9B1.IP)
  99. # [00:20] * Quits: spohl (Adium@2557E599.66715431.D25A875A.IP) (Quit: Leaving.)
  100. # [00:20] <avih> jrmuizel: that's the first place i found at which i can do it. there could be better places which i'm not aware of.
  101. # [00:20] * Joins: spohl (Adium@2557E599.66715431.D25A875A.IP)
  102. # [00:20] * Quits: qpalzm (ck@C7C05874.E84ECEF3.3376CD77.IP) (Client exited)
  103. # [00:20] * Quits: overholt (overholt@F2D29657.F60B0462.67AC9B1.IP) (Quit: Leaving)
  104. # [00:21] * Joins: GinaYeh-laptop (GinaYeh@moz-23DE8450.dynamic.hinet.net)
  105. # [00:22] <avih> jrmuizel: with OMTC, will the layout flushes stay at the main thread but image composition be OMT? (pardon any inaccuracies at the question)
  106. # [00:22] <anton> oh, XPCOM_MEM_REFCNT_LOG was set to 1 elsewhere. let's see if this fixes it
  107. # [00:22] <avih> jrmuizel: and more interestingly, will the composition durations be available to the main thread?
  108. # [00:23] * Joins: tonymec (tonymec@C6F3572C.9DD71A70.DE2DB281.IP)
  109. # [00:23] * Quits: spohl (Adium@2557E599.66715431.D25A875A.IP) (Quit: Leaving.)
  110. # [00:23] * Joins: dao (dao@moz-DE32E385.superkabel.de)
  111. # [00:24] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  112. # [00:25] * Joins: damons (gnubeard@48EE4132.852FD5E0.8D67E5D8.IP)
  113. # [00:25] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  114. # [00:26] * Joins: vendo (chatzilla@C03853C3.E1E5765D.4C2E1CAC.IP)
  115. # [00:26] * Joins: dcamp (dave@moz-930D5B64.hsd1.wa.comcast.net)
  116. # [00:26] * Quits: kaze (kaze@A5A0595A.66715431.D25A875A.IP) (Ping timeout)
  117. # [00:27] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/652e6b974c13 - Mihnea Dobrescu-Balaur - Bug 821018 - Fix XML output when tests have been skipped, r=jgriffin
  118. # [00:28] * Quits: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  119. # [00:28] * Joins: ehugg_ (chatzilla@moz-6D0FD3FC.cisco.com)
  120. # [00:28] * Joins: Dagger (Dagger@moz-9AFCB530.cable.virginmedia.com)
  121. # [00:29] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  122. # [00:29] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  123. # [00:29] * Quits: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  124. # [00:30] * Quits: ddahl (ddahl@moz-2D5B92CF.public.wayport.net) (Ping timeout)
  125. # [00:30] * Joins: mreavy_ (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net)
  126. # [00:30] * Quits: mreavy (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net) (Ping timeout)
  127. # [00:30] * mreavy_ is now known as mreavy
  128. # [00:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8bfd7767182c - Kan-Ru Chen (陳侃如) - Bug 821044 - Add MOZ_DEBUG_APP_PROCESS support r=cjones
  129. # [00:30] * Joins: jesup_ (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net)
  130. # [00:31] * Joins: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP)
  131. # [00:31] * Quits: rniwa (rniwa@5FEFE500.BA327C77.775DF071.IP) (Quit: rniwa)
  132. # [00:31] * Joins: rniwa (rniwa@5FEFE500.BA327C77.775DF071.IP)
  133. # [00:31] * Quits: till (till@moz-67D70A70.web.vodafone.de) (Ping timeout)
  134. # [00:32] * Quits: damons (gnubeard@48EE4132.852FD5E0.8D67E5D8.IP) (Connection reset by peer)
  135. # [00:32] * Joins: damons (gnubeard@48EE4132.852FD5E0.8D67E5D8.IP)
  136. # [00:32] * Quits: tanvi (tanvi@2557E599.66715431.D25A875A.IP) (Ping timeout)
  137. # [00:33] * Quits: TheOne (one@moz-49A1C86C.dip.t-dialin.net) (Input/output error)
  138. # [00:34] * jwir3 is now known as jwir3|dinner
  139. # [00:35] * Joins: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net)
  140. # [00:35] <@ehsan> jdm_: "BugÃÂÂÂÂÂ", really?
  141. # [00:35] <jdm_> :D
  142. # [00:35] <jdm_> bzexport strikes again
  143. # [00:35] <@ehsan> ah
  144. # [00:35] <@ehsan> get bz to fix that ;)
  145. # [00:35] <jdm_> ehsan: where do you see this
  146. # [00:35] <jdm_> ?
  147. # [00:36] <@ehsan> in my bugmail?
  148. # [00:36] <jdm_> haha, so you do
  149. # [00:36] <@ehsan> https://bugzilla.mozilla.org/show_bug.cgi?id=806725
  150. # [00:36] <@ehsan> this seems a bit like forgetting to null terminate a string
  151. # [00:36] <@ehsan> I thought python is supposed to not let you do that
  152. # [00:36] <sfink> oh, yeah, njn was also complaining that bzexport's utf8 difficulties are still not fixed
  153. # [00:36] <jrmuizel> avih: yes the layou flushes will stay on the main thread
  154. # [00:36] <@ehsan> ahhh
  155. # [00:37] * Joins: fitzgen (fitzgen@BD1E5CEE.5715038B.C03B9DF3.IP)
  156. # [00:37] <@ehsan> jdm_: do you wanna know what's happening here? ;)
  157. # [00:37] * Quits: hipokrit (hipokrit@1BF5DFDB.CA40E1F7.C558AD24.IP) (Quit: Leaving)
  158. # [00:37] <jrmuizel> avih: we'll need to create away to get the timing information back from the compositor
  159. # [00:37] <jdm_> ehsan: sure
  160. # [00:37] <@ehsan> jdm_: Bellindira's commit messages start with Bug{nbsp}123456
  161. # [00:37] * Joins: tanvi (tanvi@2557E599.66715431.D25A875A.IP)
  162. # [00:37] * Quits: dao (dao@moz-DE32E385.superkabel.de) (Quit: Leaving.)
  163. # [00:37] <@ehsan> {nbsp} being the utf8 encoding of NBSP
  164. # [00:37] <jrmuizel> avih: that will probably require us to make the main thread api asynch
  165. # [00:38] <@ehsan> jdm_: that also causes me to curse non-English speakers who inflicted unicode upon us every time that I push her patches
  166. # [00:38] <@ehsan> jdm_: since our bug# hook gloriously rejects that
  167. # [00:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9e155b2cc8c3 - Gregor Wagner - Bug 820135 - Preferences: We don't save prefs when we reboot. r=cjones
  168. # [00:38] <jdm_> ha
  169. # [00:38] <avih> jrmuizel: not sure it'll be worth it. what do you think? my motivation was to help the UX measure paint performance of australis, which is landing soon, probably before OMTC (i think).
  170. # [00:38] <@ehsan> jdm_: I mean seriously, why couldn't everyone just learn English and move on?
  171. # [00:39] <jrmuizel> avih: yeah, it may not be worth worry about now
  172. # [00:39] <jrmuizel> avih: we can always iterate on things as needed
  173. # [00:39] <avih> jrmuizel: indeed.
  174. # [00:39] <RyanVM> bajaj: ping
  175. # [00:39] * Quits: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP) (Ping timeout)
  176. # [00:39] * Quits: cpearce (cpearce@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  177. # [00:39] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  178. # [00:39] * Quits: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  179. # [00:40] * Quits: nrc (nrc@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  180. # [00:40] <sfink> ehsan: I'm happy speaking American and feel no reason to change, thank you very much
  181. # [00:40] <bajaj> RyanVM: pong
  182. # [00:40] <jhammel> sfink: localization would be much easier if people just spoke american
  183. # [00:40] <@ehsan> sfink: you're lucky sir, what do you think the a in 7-bit ascii stands for? ;)
  184. # [00:41] * Joins: nrc (nrc@538BABFE.A073F3E.97BBD552.IP)
  185. # [00:41] <RyanVM> bajaj: I saw your comment in bug 814713 about uplifting, but I don't see where that patch ever got approval to do so
  186. # [00:41] <avih> jrmuizel: so you think for now the layer manager can't find the painting refresh driver for its mMost recent refresh, right? so if we want to measure flush+paint, either we should move it to the refresh driver, or find another place, right?
  187. # [00:41] <bajaj> RyanVM : *checking*
  188. # [00:41] <jrmuizel> avih: I was thinking the refresh driver would pass mMostRecent refresh down to the layer manager
  189. # [00:41] <avih> jrmuizel: or find another timestamp someplace which is taken before painting start which isn't at the refresh driver
  190. # [00:42] <nemo> http://jsfiddle.net/Layke/7hjTC/show/ anyone notice it doesn't slide up as nicely in FF?
  191. # [00:42] <jrmuizel> avih: no we're better off not taking another timestamp
  192. # [00:42] <avih> jrmuizel: ah.. yeah, sounds good.
  193. # [00:42] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  194. # [00:42] <nemo> kinda gets trapped between up and down. I guess because the lil' dude has a higher z-index?
  195. # [00:42] <jrmuizel> LayerManager::RecordPaintStart(mMostRecentRefresh)
  196. # [00:42] * nemo checks
  197. # [00:42] <nemo> so interrupts the hover presumably
  198. # [00:42] <@ehsan> jdm_: thanks for fixing this test
  199. # [00:43] <jrmuizel> avih: then just have two arrays like you currently do
  200. # [00:43] <jdm> ehsan: it was the most frustrating couple hours of my day
  201. # [00:43] <avih> jrmuizel: yes and yes. i will play with it.
  202. # [00:43] <jdm> I am never saying yes to you again
  203. # [00:43] <jrmuizel> and you should be able to hook up the xpcom bits by copying what's in place
  204. # [00:43] <jrmuizel> and that will give you script access
  205. # [00:43] <@ehsan> jdm_: really? you've been having a good day ;)
  206. # [00:43] * Quits: fitzgen (fitzgen@BD1E5CEE.5715038B.C03B9DF3.IP) (Quit: take it easy)
  207. # [00:43] * Joins: cpearce (cpearce@538BABFE.A073F3E.97BBD552.IP)
  208. # [00:43] <avih> jrmuizel: also, with 2 arrays, do you think it's better to add an out array, or add a function which returns the other array?
  209. # [00:43] <@ehsan> jdm_: also, will you be able to work on another bug?
  210. # [00:43] <jdm> ehsan: ...yes
  211. # [00:44] <@ehsan> bazzinga!
  212. # [00:44] <nemo> hm. seems to get trapped even if I give .zg-sig a z-index of 200
  213. # [00:44] <jdm> ehsan: the psm patch I just wrote works :)
  214. # [00:44] <jdm> time for review
  215. # [00:45] <bajaj> RyanVM : comment 9 suggests we needed required branch patches. You could use a=bajaj for approval on this..It should have ideally gone through the approval process before the beta landing as well, but since we were in a rush to get this in before beta 4 went to build yesterday, hence the skip.
  216. # [00:45] <jrmuizel> avih: ummm
  217. # [00:45] <@ehsan> jdm_: and hopefully watch central until midnight! :)
  218. # [00:45] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  219. # [00:45] * @ehsan crosses fingers
  220. # [00:45] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/fd919eb97465 - Bellindira Castillo [:bellindira] - Bug 806725 - Port test_localStorageBasePrivateBrowsing.html to the new per-tab PB APIs; r=ehsan
  221. # [00:45] <jrmuizel> avih: maybe a single function is better
  222. # [00:45] <jrmuizel> avih: but I'm not sure which is better
  223. # [00:45] <avih> yeah, a bit uglier, but more tight.
  224. # [00:46] * Joins: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP)
  225. # [00:46] * Quits: ehugg_ (chatzilla@moz-6D0FD3FC.cisco.com) (Ping timeout)
  226. # [00:46] * Quits: Boriss (FlyingToas@A01051A9.6F669779.3D1CA460.IP) (Quit: Boriss)
  227. # [00:47] <avih> jrmuizel: i'll try to see if i can add a function without ugly management. if i won't find an extremely simple solution for that, i'll go the out array way.
  228. # [00:47] <RyanVM> bajaj: yeah, when it comes to uplifts, I prefer explicit approval to implied approval
  229. # [00:47] * Fallen is now known as Fallen|away
  230. # [00:47] <RyanVM> bajaj: thanks
  231. # [00:47] <jrmuizel> avih: sure
  232. # [00:47] <@ehsan> man
  233. # [00:47] <@ehsan> the devtools tests are like a random number generator
  234. # [00:47] <@ehsan> they intermittently fail 50% of the time
  235. # [00:47] <RyanVM> tn: fyi, it's in my queue for aurora/esr17
  236. # [00:47] <avih> jrmuizel: ok, thanks for the time and help :) i'll update my bug with a summary of this info and conclusions.
  237. # [00:48] * Quits: jdm_ (jdm@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  238. # [00:48] <nemo> hrm. odd. can't get z-index values that don't do this?
  239. # [00:48] <jrmuizel> avih: great
  240. # [00:48] <bajaj> RyanVM : thanks
  241. # [00:48] <avih> jrmuizel: is there a bug number for your frame recording function?
  242. # [00:48] <seth> avih: drive by suggestion: std::pair or similar
  243. # [00:49] <jrmuizel> avih: yes, check the blame I don't remember it off hand
  244. # [00:49] <avih> seth: indeed, but it also has a JS interface, otherwise, yes, array of pairs would have been fine.
  245. # [00:49] <seth> avih: ah, JS does complicate things =)
  246. # [00:50] <@ehsan> njn: fwiw you want to land the DMD stuff on mozilla-b2g18 not mozilla-beta
  247. # [00:50] * Quits: @dveditz (dveditz@moz-CA4FEF00.hsd1.ca.comcast.net) (Ping timeout)
  248. # [00:50] * Joins: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP)
  249. # [00:51] <RyanVM> jlebar: ping
  250. # [00:51] <jlebar> RyanVM: hey
  251. # [00:51] <RyanVM> hi!
  252. # [00:51] <RyanVM> bug 804303
  253. # [00:51] <RyanVM> does that need to go on both beta and b2g18?
  254. # [00:51] <RyanVM> i'm a bit lost at this point
  255. # [00:51] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  256. # [00:51] <tn> RyanVM, ok thanks. sorry about my mix up there
  257. # [00:51] <jlebar> RyanVM: No, just b2g18. When I was setting flags this morning, b2g18 didn't exist.
  258. # [00:52] <jlebar> RyanVM: I'll go clean up the flags.
  259. # [00:52] <RyanVM> jlebar: excellent, thanks!
  260. # [00:52] <nemo> w/ a slow transition, chrome kinda has stutters, but doesn't freeze
  261. # [00:52] * Joins: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP)
  262. # [00:52] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  263. # [00:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/380930ddb930 - Jeff Muizelaar - Bug 798245. Postpone firstpaint while painting supressed. r=cjones
  264. # [00:57] * Quits: ochameau (ochameau@moz-109A6728.fbx.proxad.net) (Ping timeout)
  265. # [00:57] * Quits: vendo (chatzilla@C03853C3.E1E5765D.4C2E1CAC.IP) (Connection reset by peer)
  266. # [00:58] * Joins: ochameau (ochameau@moz-109A6728.fbx.proxad.net)
  267. # [00:59] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  268. # [00:59] * Quits: brendan (brendaneic@2557E599.66715431.D25A875A.IP) (Quit: brendan)
  269. # [00:59] * Quits: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu) (Ping timeout)
  270. # [00:59] * Joins: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net)
  271. # [01:00] * Joins: dveditz (dveditz@moz-CA4FEF00.hsd1.ca.comcast.net)
  272. # [01:00] * ChanServ sets mode: +o dveditz
  273. # [01:00] * Joins: till (till@moz-C2D5DF2F.web.vodafone.de)
  274. # [01:01] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  275. # [01:01] <avih> jrmuizel: i found the revision (83905 by you), but i'd appreciate some help on associating it with a commit message...
  276. # [01:01] * Quits: josh (josh@moz-5D371A2.adsl2.static.versatel.nl) (Quit: josh)
  277. # [01:02] <jrmuizel> avih: hg export 83905?
  278. # [01:02] * Quits: @dveditz (dveditz@moz-CA4FEF00.hsd1.ca.comcast.net) (Ping timeout)
  279. # [01:02] * Joins: dveditz (dveditz@A5A0595A.66715431.D25A875A.IP)
  280. # [01:02] * ChanServ sets mode: +o dveditz
  281. # [01:03] <avih> jrmuizel: ah. thx :) (noob alert...)
  282. # [01:07] * Quits: smontagu (chatzilla@moz-164DEF16.red.bezeqint.net) (Ping timeout)
  283. # [01:08] * Quits: till (till@moz-C2D5DF2F.web.vodafone.de) (Client exited)
  284. # [01:09] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  285. # [01:09] * Joins: bbondy (bbondy@moz-CBCCE0F3.home.cgocable.net)
  286. # [01:09] * Quits: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  287. # [01:09] * Quits: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  288. # [01:09] * Quits: jhammel (jhammel@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  289. # [01:09] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  290. # [01:09] * Quits: bent (chatzilla@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  291. # [01:10] * Quits: glob (glob@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  292. # [01:10] * Quits: gandalf (zbraniecki@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  293. # [01:10] * Quits: bdahl (bdahl@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  294. # [01:10] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  295. # [01:10] * Quits: bsmith (bsmith@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  296. # [01:10] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/baf41da2066b - Gavin Sharp - Bug 819827 - Make fallback value for UpdateChannel.get() match the build's original update channel. r=rstrong, a=akeybl
  297. # [01:11] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/660f08b60719 - Anthony Jones - Bug 804808 - Fixed missing reset of zoom. r=cjones, a=sicking
  298. # [01:11] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/2f0ec8fbaa36 - Alexander Surkov - Bug 819242 - JAWS needs old IServiceProvider::QueryService. r=tbsaunde, a=akeybl
  299. # [01:11] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/34666dbf325d - Jeff Walden - Bug 805121 - Be more careful checking math to avoid incorrect behaviors. r=terrence
  300. # [01:11] * nthomas is now known as nthomas|mtg
  301. # [01:11] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9d0d968e33b4 - Jeff Muizelaar - Bug 798245. Propagate the zoom from the tab child into the frame metrics. r=cjones
  302. # [01:12] * Joins: bsmith (bsmith@moz-BE33DA21.fw1.sfo1.mozilla.net)
  303. # [01:12] * Quits: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP) (Quit: ChatZilla 0.9.89 [SeaMonkey 2.7.2/20121116143250])
  304. # [01:12] * Joins: bdahl (bdahl@moz-BE33DA21.fw1.sfo1.mozilla.net)
  305. # [01:12] * catlee is now known as catlee-away
  306. # [01:13] * Joins: jhammel (jhammel@moz-BE33DA21.fw1.sfo1.mozilla.net)
  307. # [01:14] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  308. # [01:14] * Quits: gkw (fuzz2lin@2557E599.66715431.D25A875A.IP) (Quit: leaving)
  309. # [01:14] * Joins: gkw (fuzz2lin@2557E599.66715431.D25A875A.IP)
  310. # [01:15] * Joins: gandalf (zbraniecki@moz-BE33DA21.fw1.sfo1.mozilla.net)
  311. # [01:15] * Joins: glob (glob@moz-BE33DA21.fw1.sfo1.mozilla.net)
  312. # [01:16] * Joins: kaie2 (kaie@moz-A5723291.dip.t-dialin.net)
  313. # [01:16] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Ping timeout)
  314. # [01:16] <avih> jrmuizel: we do agree that flush+paint processing can be important, especially on cases where they're fast enough to result in 60fps on the test system, right? could there be maybe a different method to find the paint times? or not the processing times but which is still enough for the case of fast test systems? e.g. increasing layout.refresh_rate to 1000, at which case the actual frame intervals also correlate to the processing durations?
  315. # [01:16] * Quits: kaie (kaie@moz-E160A59A.dip.t-dialin.net) (Ping timeout)
  316. # [01:16] * kaie2 is now known as kaie
  317. # [01:17] <jrmuizel> right. I think using the refresh driver to the start of paint time is a fine approach
  318. # [01:18] <avih> jrmuizel: and the other suggestion? just increase the refresh rate such that the frame interval corrolate to the processing as well?
  319. # [01:19] <jrmuizel> avih: that doesn't seem as wise
  320. # [01:19] * Joins: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net)
  321. # [01:19] <jrmuizel> and won't work that well with vsync and timer precision
  322. # [01:19] * Joins: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net)
  323. # [01:19] <avih> jrmuizel: would produce unrelated overhead which would clutter the result?
  324. # [01:20] <avih> jrmuizel: ok.
  325. # [01:20] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  326. # [01:21] * Joins: ddahl (ddahl@moz-976797D6.hsd1.il.comcast.net)
  327. # [01:22] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  328. # [01:23] * Joins: lizzard (ehenry@moz-B5A3ACB4.tmodns.net)
  329. # [01:24] * Quits: lizzard (ehenry@moz-B5A3ACB4.tmodns.net) (Quit: lizzard)
  330. # [01:24] * mdas|afk is now known as mdas
  331. # [01:25] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  332. # [01:25] * Quits: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net) (Ping timeout)
  333. # [01:25] * Quits: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net) (Client exited)
  334. # [01:26] * Quits: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se) (Ping timeout)
  335. # [01:26] * Joins: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net)
  336. # [01:27] * Joins: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net)
  337. # [01:27] * Joins: satdav (satdav@moz-2B0F19ED.cable.virginmedia.com)
  338. # [01:27] <satdav> can i get your throughts on bug 644485
  339. # [01:28] * khuey is now known as khuey|away
  340. # [01:30] * Quits: phx (Adium@C1D209E0.28336FB0.689607DE.IP) (Quit: Leaving.)
  341. # [01:31] * Quits: satdav (satdav@moz-2B0F19ED.cable.virginmedia.com) (Quit: Leaving)
  342. # [01:32] * Joins: biesi_ (cbiesinger@moz-48E61CD.snc1.tfbnw.net)
  343. # [01:32] * Joins: bent (chatzilla@moz-BE33DA21.fw1.sfo1.mozilla.net)
  344. # [01:35] * Quits: redfive (chatzilla@A1DA5D8F.215E7E3E.4989C8B.IP) (Ping timeout)
  345. # [01:36] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4dbff6dc7b50 - Gregor Wagner - Bug 821101 - Contacts: Fix phonenumberJS error. r=bent
  346. # [01:36] * geekboy is now known as geekboy|afk
  347. # [01:38] * Joins: redfive (chatzilla@A1DA5D8F.215E7E3E.4989C8B.IP)
  348. # [01:40] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  349. # [01:40] * Quits: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net) (Client exited)
  350. # [01:41] * Joins: phx (Adium@DA386262.E8E44173.689607DE.IP)
  351. # [01:41] <NeilAway> avih: hg log -r83905 if you just want the message
  352. # [01:41] <avih> NeilAway: thx :)
  353. # [01:41] * Quits: mdas (mdas@50AE257C.D30B51A1.412CF160.IP) (Quit: )
  354. # [01:41] * Quits: RealRaven (Thunderbir@83174943.9F09AD81.C3498625.IP) (Quit: RealRaven)
  355. # [01:41] * Quits: GinaYeh-laptop (GinaYeh@moz-23DE8450.dynamic.hinet.net) (Ping timeout)
  356. # [01:42] * Joins: ehugg_lime (ehugg_lime@moz-EA33CD8D.hsd1.wa.comcast.net)
  357. # [01:42] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  358. # [01:43] * Quits: jorendorff (jorendorff@moz-FAB36621.hsd1.tn.comcast.net) (Quit: jorendorff)
  359. # [01:43] * Joins: ehugg_ (chatzilla@moz-44D86B1E.cisco.com)
  360. # [01:44] * Quits: jimm (jmathies@moz-7F164CA1.pn.at.cox.net) (Quit: )
  361. # [01:44] * Joins: biesi__ (cbiesinger@moz-48E61CD.snc1.tfbnw.net)
  362. # [01:45] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  363. # [01:45] * Quits: biesi_ (cbiesinger@moz-48E61CD.snc1.tfbnw.net) (Ping timeout)
  364. # [01:46] * ewong|away is now known as ewong
  365. # [01:47] * Quits: Pike (Pike@moz-62CD15EC.pool.mediaways.net) (Ping timeout)
  366. # [01:47] * Joins: Pike (Pike@moz-2790AB6B.pool.mediaways.net)
  367. # [01:49] * Quits: redfive (chatzilla@A1DA5D8F.215E7E3E.4989C8B.IP) (Ping timeout)
  368. # [01:49] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  369. # [01:49] * Quits: bent (chatzilla@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: ChatZilla 0.9.89-rdmsoft [XULRunner 1.9.2.19/20110707195905])
  370. # [01:50] * Quits: tanvi (tanvi@2557E599.66715431.D25A875A.IP) (Ping timeout)
  371. # [01:50] * Quits: @dveditz (dveditz@A5A0595A.66715431.D25A875A.IP) (Ping timeout)
  372. # [01:50] * Joins: dveditz (dveditz@A5A0595A.66715431.D25A875A.IP)
  373. # [01:50] * ChanServ sets mode: +o dveditz
  374. # [01:52] * Quits: coyotebush (corey@moz-31CC2724.dsl.dynamic.sonic.net) (Ping timeout)
  375. # [01:52] * Joins: birtles (chatzilla@moz-348F61F0.mozilla.or.jp)
  376. # [01:54] * Quits: ehugg_lime (ehugg_lime@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: Leaving)
  377. # [01:54] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  378. # [01:55] * Joins: brendan (brendaneic@2557E599.66715431.D25A875A.IP)
  379. # [01:55] * Joins: redfive (chatzilla@A1DA5D8F.215E7E3E.4989C8B.IP)
  380. # [01:55] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/22c6700c8794 - Gregor Wagner - Bug 819560 - RIL: remember the last mcc code. r=sicking
  381. # [01:57] * Quits: avih (quassel@moz-4D7D2F38.red.bezeqint.net) (Connection reset by peer)
  382. # [01:58] * Joins: Waldo (waldo@moz-7E986AF1.lodgenet.net)
  383. # [01:58] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  384. # [01:59] * Quits: Waldo (waldo@moz-7E986AF1.lodgenet.net) (Quit: brb, ish)
  385. # [01:59] * Quits: akeybl (akeybl@2557E599.66715431.D25A875A.IP) (Quit: Leaving...)
  386. # [02:01] * Joins: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net)
  387. # [02:03] * Joins: avih (quassel@moz-4D7D2F38.red.bezeqint.net)
  388. # [02:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c4b354cd4b98 - Chris Double - Bug 820661 - Implement support for libstagefright video decoding on HTC EVO Design Gingerbread Android phone - r=cpeterson
  389. # [02:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f7830f9b52d8 - Edwin Flores - Bug 803394 - Add image type for RGB images in shared memory r=nical
  390. # [02:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/544450118868 - Edwin Flores - Bug 803394 - Provide a callback to media plugins to request video buffers owned by gecko r=doublec
  391. # [02:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b99888806337 - Edwin Flores - Bug 803394 - Use Android ColorConverter class to convert video frames with unknown color formats from libstagefright r=doublec
  392. # [02:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/2d36cae22daf - Edwin Flores - Bug 803394 - Build change for Android Gingerbread video color conversion r=khuey
  393. # [02:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/64e2e88fdf66 - Edwin Flores - Bug 803394 - Use Android ColorConverter class for video color conversion on Gingerbread r=doublec
  394. # [02:04] * Quits: Pike (Pike@moz-2790AB6B.pool.mediaways.net) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121128204232])
  395. # [02:04] * Quits: bajaj (Adium@2557E599.66715431.D25A875A.IP) (Quit: Leaving.)
  396. # [02:06] * Joins: Austin__ (austin@moz-F78B7921.cpe.net.cable.rogers.com)
  397. # [02:07] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/46826841e0fe - Bobby Holley - Bug 820666 - Tag XBL script for <field> elements and child scripts. r=jorendorff
  398. # [02:07] * gregglind is now known as gregglind_away
  399. # [02:07] * Parts: Austin__ (austin@moz-F78B7921.cpe.net.cable.rogers.com)
  400. # [02:07] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1001e245b6ba - Bobby Holley - Bug 818716 - Move XBL detection into nsContentUtils and remove filename hack. r=mrbkap
  401. # [02:08] * Quits: bbondy (bbondy@moz-CBCCE0F3.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  402. # [02:11] <firebot> Check-in:
  403. # [02:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/edb2cfd39554 - Gavin Sharp - Bug 820489: fix intermittent orange in browser_social_multiprovider by always waiting for sidebar to load before continuing the test. Also make unloadSidebar immediately
  404. # [02:11] <firebot> stop pending sidebar loads, r=markh/mixedpuppy
  405. # [02:12] * Quits: mccr8 (mccr8@2557E599.66715431.D25A875A.IP) (Quit: mccr8)
  406. # [02:12] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  407. # [02:13] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4777ad9776ec - Matt Woodrow - Bug 820246 - Split nsDisplayCanvasBackground into separate color and image items. r=roc
  408. # [02:13] * nmatsakis is now known as nmatsakis-away
  409. # [02:14] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1630310cc83d - Till Schneidereit - Bug 819702 - apply de-macroization and de-constification form JS2C to selfhosted.js. r=shu DONTBUILD
  410. # [02:14] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  411. # [02:14] * Quits: Goldorak (chatzilla@7CD1B470.2BC633E3.88CF6591.IP) (Quit: ChatZilla 0.9.89-rdmsoft [XULRunner 1.9.0.17/2009122204])
  412. # [02:16] * Quits: redfive (chatzilla@A1DA5D8F.215E7E3E.4989C8B.IP) (Ping timeout)
  413. # [02:18] * Quits: aklotz (Thunderbir@moz-55246988.cg.shawcable.net) (Quit: aklotz)
  414. # [02:19] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  415. # [02:19] * AutomatedTester is now known as AutomatedTester|AFK
  416. # [02:20] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Connection reset by peer)
  417. # [02:21] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  418. # [02:21] * Quits: bdahl (bdahl@moz-BE33DA21.fw1.sfo1.mozilla.net) (Client exited)
  419. # [02:23] * Quits: @smaug (chatzilla@moz-78A86AC.pp.htv.fi) (Input/output error)
  420. # [02:24] * Quits: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP) (Ping timeout)
  421. # [02:24] * Quits: Mossop (mossop@2557E599.66715431.D25A875A.IP) (Ping timeout)
  422. # [02:26] * Joins: knelson (Adium@moz-27BAB34D.dsl.pltn13.sbcglobal.net)
  423. # [02:26] * mcote is now known as mcote|afk
  424. # [02:26] * Parts: knelson (Adium@moz-27BAB34D.dsl.pltn13.sbcglobal.net)
  425. # [02:27] * Quits: jhammel (jhammel@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: leaving)
  426. # [02:28] * Quits: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: jet)
  427. # [02:28] * Quits: cviecco (cviecco@2557E599.66715431.D25A875A.IP) (Input/output error)
  428. # [02:28] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Ping timeout)
  429. # [02:29] * Joins: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net)
  430. # [02:29] * Quits: clever (clever@E350D805.D062F6C5.F9E32CA6.IP) (Ping timeout)
  431. # [02:30] * Quits: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: jet)
  432. # [02:30] * Joins: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net)
  433. # [02:30] * Joins: clever (clever@E350D805.D062F6C5.F9E32CA6.IP)
  434. # [02:30] * heycam is now known as heycam|away
  435. # [02:31] * Joins: bbondy (bbondy@moz-CBCCE0F3.home.cgocable.net)
  436. # [02:31] * joduinn-mtg is now known as joduinn
  437. # [02:34] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  438. # [02:35] * Joins: mayhemer (Miranda@moz-415580BA.broadband17.iol.cz)
  439. # [02:35] * Quits: biesi__ (cbiesinger@moz-48E61CD.snc1.tfbnw.net) (Ping timeout)
  440. # [02:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6445a79d9795 - Jorge Luis Mendez - Bug 820285 - Use distutils.version.StrictVersion in OSX version tests; r=gps
  441. # [02:36] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  442. # [02:38] * glob is now known as glob|away
  443. # [02:38] * glob|away is now known as glob
  444. # [02:38] * Joins: smaug (chatzilla@moz-78A86AC.pp.htv.fi)
  445. # [02:38] * ChanServ sets mode: +o smaug
  446. # [02:39] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  447. # [02:39] * Quits: terrence (terrence@2557E599.66715431.D25A875A.IP) (Ping timeout)
  448. # [02:40] <Yoric> ttaubert: I'm still interested in a review for bug 753768, btw.
  449. # [02:42] * Quits: fabrice (fabrice@2557E599.66715431.D25A875A.IP) (Quit: Leaving.)
  450. # [02:42] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  451. # [02:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/531eb76b7ab6 - Till Schneidereit - Bug 815010 - Create lazy interpreted function's script in the jsdbg API's JS_GetFunctionScript. r=luke
  452. # [02:45] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  453. # [02:48] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  454. # [02:50] * AaronMT is now known as AaronMT|away
  455. # [02:51] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  456. # [02:51] * Joins: Waldo (waldo@moz-7E986AF1.lodgenet.net)
  457. # [02:52] * Quits: bbondy (bbondy@moz-CBCCE0F3.home.cgocable.net) (Client exited)
  458. # [02:53] * nthomas|mtg is now known as nthomas
  459. # [02:54] * Quits: jammink (textual@2557E599.66715431.D25A875A.IP) (Quit: Computer has gone to sleep.)
  460. # [02:55] * Joins: jammink (textual@2557E599.66715431.D25A875A.IP)
  461. # [02:56] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  462. # [02:57] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  463. # [02:57] * Quits: tonymec (tonymec@C6F3572C.9DD71A70.DE2DB281.IP) (Input/output error)
  464. # [02:57] * Quits: mayhemer (Miranda@moz-415580BA.broadband17.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  465. # [02:59] * Quits: tonymec|away (tonymec@C6F3572C.9DD71A70.DE2DB281.IP) (Quit: Konversation terminated!)
  466. # [03:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/aac5a6c4024c - Jonathan Griffin - Bug 821091 - Add a pref to Marionette to cause it use force-local: true, r=mdas, a=test-only
  467. # [03:03] * Quits: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net) (Ping timeout)
  468. # [03:04] * Quits: krishnasurfeasy (krishnasur@moz-7BFF253D.cpe.net.cable.rogers.com) (Quit: krishnasurfeasy)
  469. # [03:04] * Joins: tonymec__ (tonymec@B1C68DDA.7DC08933.DE2DB281.IP)
  470. # [03:04] * tonymec__ is now known as tonymec|away
  471. # [03:06] * Joins: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net)
  472. # [03:06] * sheeri is now known as sheeri-afk
  473. # [03:06] * Quits: AaronMT|away (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  474. # [03:06] * Joins: devd (Name@moz-9DACDECA.cs.berkeley.edu)
  475. # [03:07] * Quits: devd (Name@moz-9DACDECA.cs.berkeley.edu) (Quit: leaving)
  476. # [03:07] * Joins: bz (bzbarsky@moz-C7E1A91E.bstnma.fios.verizon.net)
  477. # [03:07] * ChanServ sets mode: +o bz
  478. # [03:07] <ewong> !seen Mossop
  479. # [03:07] <firebot> mossop was last seen 54 minutes and 56 seconds ago, saying '\o/' in #jetpack.
  480. # [03:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bdee421b26c6 - Jim Blandy - bug 820691: Don't use GDB's --python option to run JS pretty-printer tests; newer GDBs don't have that option. DONTBUILD r=sfink
  481. # [03:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/40e47d029f77 - Jim Blandy - Bug 819525: JS GDB pretty-printers: Don't trip over tagless structs. DONTBUILD r=sfink
  482. # [03:08] * Quits: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: jet)
  483. # [03:10] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  484. # [03:11] <@bz> !seen heycam
  485. # [03:11] <@killer> I don't know who heycam is.
  486. # [03:11] <firebot> heycam was last seen 40 minutes and 52 seconds ago, changing nick to heycam|away.
  487. # [03:12] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  488. # [03:12] * glob is now known as glob|away
  489. # [03:13] <seth> bz: i was told i should get super review (potentially from you) for making it an error to pass anything but null for an argument on a method on imgITools (and introducing a new version of the method without that argument)
  490. # [03:13] <seth> bz: sound right?
  491. # [03:14] <seth> bz: i was also told by another person that nobody cares, that's why i ask =)
  492. # [03:14] * Joins: atsai (Conjuror@moz-99690620.hinet-ip.hinet.net)
  493. # [03:14] <jdm> ha
  494. # [03:14] <jdm> that sounds about right
  495. # [03:15] * Quits: Honza (chatzilla@5AD2A1B9.23B79DE4.D0083327.IP) (Client exited)
  496. # [03:15] <@dolske> bug ?
  497. # [03:15] * Joins: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net)
  498. # [03:15] <@bz> seth: both claims sound true
  499. # [03:16] <seth> bz: heh, i figured =)
  500. # [03:16] <@bz> seth: or at least potentially true. ;)
  501. # [03:16] <seth> bug 816362
  502. # [03:16] * sheeri-afk is now known as sheeri
  503. # [03:16] * Joins: fantasai (fantasai@moz-B8B22C00.org)
  504. # [03:16] <@bz> seth: looking
  505. # [03:17] <fantasai> hey bz
  506. # [03:17] <fantasai> bz: do you know who's in charge of the Rust layout implementation?
  507. # [03:19] * Quits: chewey (chewey@moz-BD3E69ED.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  508. # [03:19] * Joins: tonymec (tonymec@B1C68DDA.7DC08933.DE2DB281.IP)
  509. # [03:19] <@bz> fantasai: um
  510. # [03:19] * Joins: chewey (chewey@moz-8D16AAD6.dip0.t-ipconnect.de)
  511. # [03:19] <@bz> fantasai: Right now, Brian Burg effectively
  512. # [03:20] <@bz> fantasai: and to some extend Brian Anderson and pcwalton
  513. # [03:20] <@bz> fantasai: They've talked to me and roc a bit...
  514. # [03:20] * Quits: espindola (espindola@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  515. # [03:20] <@bz> seth: have you already checked existing consumers we know about?
  516. # [03:20] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  517. # [03:20] * Joins: espindola (espindola@F2D29657.F60B0462.67AC9B1.IP)
  518. # [03:21] <seth> bz: there's no problems inside our codebase, AFAICT. i'm not so sure that's true for add ons though - could well break some
  519. # [03:21] <@bz> ok
  520. # [03:21] * @bz looks at the addons uses
  521. # [03:21] <@bz> https://mxr.mozilla.org/addons/search?string=decodeimagedata&find=&findi=&;filter=^[^\0]*%24&hitlimit=&tree=addons
  522. # [03:21] <@bz> Does your LDAP let you load that?
  523. # [03:22] <jdm> it should
  524. # [03:22] <seth> yeah, it works for me
  525. # [03:22] <@bz> ok
  526. # [03:22] <@bz> I have them all open in tabs already
  527. # [03:22] * Quits: espindola (espindola@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  528. # [03:22] <@bz> but in case you didn't know about it, for future reference...
  529. # [03:23] <@dolske> bz: what's the plan for the current Servo stuff, anyway? Are they just building enough to understand needs from Rust, or is it the foundation for something that will ship some day?
  530. # [03:23] <jdm> dolske: as I understand it, there are broad ideas about productizing it several years down the road
  531. # [03:23] <@bz> dolske: Some of both.
  532. # [03:24] <cpeterson> AWFY reports some 10-20% performance regressions today. Is this a known issue? The changelog range suspiciously contains the clang 3.2 upgrade.
  533. # [03:24] <@dolske> ah
  534. # [03:24] <@bz> dolske: Though I fully expect we'll have to throw away some of the stuff we're doing right now.
  535. # [03:24] <benjamin> cpeterson: I believe it switched to a threadsafe build
  536. # [03:24] <jdm> cpeterson: I think that was turning on the threadsafety
  537. # [03:25] <cpeterson> benjamin, jdm: ok
  538. # [03:25] <cpeterson> thanks
  539. # [03:25] <seth> bz: cool. i should add a bookmark keyword for this
  540. # [03:25] * Joins: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net)
  541. # [03:26] * bwinton_away is now known as bwinton
  542. # [03:26] * Quits: @ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  543. # [03:26] <@bz> seth: it's useful times like this.
  544. # [03:27] <@bz> seth: all of these pass null.
  545. # [03:27] * Joins: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  546. # [03:27] * ChanServ sets mode: +o roc
  547. # [03:27] <@bz> seth: marked sr+
  548. # [03:28] * Quits: hub (hub@CAB30FBD.8F96AEA7.2D179A7D.IP) (Ping timeout)
  549. # [03:28] <seth> bz: cool, just went through them too
  550. # [03:28] * Quits: KaiRo (robert@moz-85440582.adsl.highway.telekom.at) (Input/output error)
  551. # [03:28] <seth> bz: i actually think one of them might not pass null, tho
  552. # [03:28] <seth> bz: bootstrap.js
  553. # [03:28] <seth> bz: https://mxr.mozilla.org/addons/source/395282/bootstrap.js#278
  554. # [03:29] <seth> oh dear..
  555. # [03:29] <@bz> seth: I thought that too, till I found the end of line 272
  556. # [03:29] <@gavin> dolske: https://github.com/mozilla/servo/wiki/Design is a good read if you haven't seen it
  557. # [03:29] <@bz> seth: oh dear?
  558. # [03:29] <seth> bz: heh, oh i see. i missed that little "data = {}" tucked at the end
  559. # [03:30] <@bz> seth: Ways To Not Write Code 101
  560. # [03:30] <seth> bz: classic readability failure =)
  561. # [03:30] <seth> everything looks good then. awesome! thanks for the sr+!
  562. # [03:31] <@bz> seth: no problem.
  563. # [03:31] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  564. # [03:31] <@bz> gavin: ah, nice. That's new-ish.
  565. # [03:31] * Joins: Conjuror (Conjuror@moz-99690620.hinet-ip.hinet.net)
  566. # [03:32] * Quits: RyanVM (RyanVM@moz-148999FE.phlapa.fios.verizon.net) (Quit: ChatZilla 0.9.89 [Firefox 20.0a1/20121206170546])
  567. # [03:33] * sheeri is now known as sheeri-afk
  568. # [03:33] <@dolske> "Although Servo is a research project, it is designed to be "productizable""
  569. # [03:33] <@dolske> O_o
  570. # [03:33] <jdm> the product will make you free
  571. # [03:33] * Quits: sewardj (sewardj@moz-404211F9.dip.t-dialin.net) (Ping timeout)
  572. # [03:34] * Joins: sewardj (sewardj@moz-DC2051D3.dip.t-dialin.net)
  573. # [03:34] * @dolske goes back to worrying about more imminent disasters.
  574. # [03:36] * joduinn is now known as joduinn-afk
  575. # [03:36] <@bz> dolske: heh
  576. # [03:37] <@bz> dolske: the point is to learn things not just about rust but about parallel browser engines too
  577. # [03:37] <@bz> dolske: anyway, there's definitely a lot of unknown here.
  578. # [03:39] <@bz> Can XBL properties not have a <getter> or <setter>?
  579. # [03:40] <@bz> ah, onget/onset
  580. # [03:42] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  581. # [03:42] * Quits: jgriffin (jgriffin@moz-DD9CBA45.hsd1.wa.comcast.net) (Quit: jgriffin)
  582. # [03:43] * nmatsakis-away is now known as nmatsakis
  583. # [03:43] * Quits: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net) (Client exited)
  584. # [03:45] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  585. # [03:45] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  586. # [03:47] * Quits: a-865 (fmcz@moz-A5D13CA.cable.mindspring.com) (Quit: ChatZilla 0.9.89 [SeaMonkey 2.15/20121206070501])
  587. # [03:49] * lightsofapollo is now known as lightsofapollo|afk
  588. # [03:50] * Joins: gustavold (gustavold@9FF57A6A.27C9FAA1.6535E70B.IP)
  589. # [03:53] * bwinton is now known as bwinton_away
  590. # [03:56] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  591. # [03:56] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Ping timeout)
  592. # [03:56] * Quits: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk) (Ping timeout)
  593. # [03:56] * Quits: @smaug (chatzilla@moz-78A86AC.pp.htv.fi) (Ping timeout)
  594. # [03:57] * Quits: hurley (hurley@moz-E76806A0.dsl.static.sonic.net) (Quit: Get MacIrssi - http://www.sysctl.co.uk/projects/macirssi/ )
  595. # [03:58] * hwine is now known as hwine-food
  596. # [03:59] * Quits: azakai (alon@2557E599.66715431.D25A875A.IP) (Ping timeout)
  597. # [04:00] <@roc> where's Till Schneidereit?
  598. # [04:00] <@roc> massive inbound bustage
  599. # [04:01] * Quits: jammink (textual@2557E599.66715431.D25A875A.IP) (Quit: Computer has gone to sleep.)
  600. # [04:02] <jdm> wuh oh
  601. # [04:02] <jdm> he's probably asleep, being in germany
  602. # [04:02] <@roc> I will assist him to the exit
  603. # [04:03] * Joins: a-865 (fmcz@moz-A5D13CA.cable.mindspring.com)
  604. # [04:04] * Quits: juanb (jbecerra@2557E599.66715431.D25A875A.IP) (Quit: juanb)
  605. # [04:04] * glob|away is now known as glob
  606. # [04:04] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ebfa6888f98e - Robert O'Callahan - Backed out changeset 531eb76b7ab6 (bug 815010) due to major test bustage
  607. # [04:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/0368b4c03c63 - Robert O'Callahan - Backing out bug 815010 due to test failures
  608. # [04:05] * Quits: phx (Adium@DA386262.E8E44173.689607DE.IP) (Quit: Leaving.)
  609. # [04:05] <ewong> what about jgriffin's push on inbound.. it's related to Till Schneidereit's bustage?
  610. # [04:06] * Quits: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com) (Ping timeout)
  611. # [04:06] * Joins: Mook (mook@moz-8F011215.dsl.teksavvy.com)
  612. # [04:06] * Quits: Waldo (waldo@moz-7E986AF1.lodgenet.net) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 17.0.1/20121129151931])
  613. # [04:07] <@roc> no
  614. # [04:07] <Callek> ewong: I suppose I need to go to sleep I just thought you were asking about backing out a push until schrodinger causes a bustage
  615. # [04:07] * Quits: avih (quassel@moz-4D7D2F38.red.bezeqint.net) (Connection reset by peer)
  616. # [04:07] <Callek> and yea, I realize how ridiculous that sounds
  617. # [04:07] <ewong> Callek heh
  618. # [04:10] * Quits: a-865 (fmcz@moz-A5D13CA.cable.mindspring.com) (Quit: ChatZilla 0.9.89 [SeaMonkey 2.15/20121206070501])
  619. # [04:10] * cmcavoy is now known as cmcavoy-offline
  620. # [04:11] <ewong> so jgriffin's push also needs to be backed out? (just to understand what's going on)
  621. # [04:12] * ewong goes to reading the rules again.
  622. # [04:12] * Quits: MrMazda (fmcz@moz-A5D13CA.cable.mindspring.com) (Ping timeout)
  623. # [04:13] * Quits: damons (gnubeard@48EE4132.852FD5E0.8D67E5D8.IP) (Quit: damons)
  624. # [04:13] * Joins: MrMazda (fmcz@moz-A5D13CA.cable.mindspring.com)
  625. # [04:14] * Quits: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.89 [Firefox 20.0a1/20121210042338])
  626. # [04:14] * Joins: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  627. # [04:14] <dholbert> ewong, AFAICT, jgriffin's push is innocent (at least, it's not obvious that it caused any trouble)
  628. # [04:14] * Quits: brendan (brendaneic@2557E599.66715431.D25A875A.IP) (Quit: brendan)
  629. # [04:14] <dholbert> ewong, so no, it doesn't need backing out
  630. # [04:14] <ewong> dholbert: ok. thanks!
  631. # [04:15] * Quits: markh (Instantbir@CE947AE5.9D3E6021.78BA16EF.IP) (Ping timeout)
  632. # [04:15] <dholbert> ewong, but if it _did_ cause trouble, we'll see it on roc's backout-push. (which clears the earlier trouble) :)
  633. # [04:15] <@bz> ewong: tehre are no rules, more like guidelines
  634. # [04:15] <@bz> Subtle hints of backout, with an r- aftertaste
  635. # [04:15] <tbsaunde> bz: sorry I keep wasint your time catching whitespace stuff :( I need to figure out how to make vim do a better job
  636. # [04:15] <ewong> dholbert: ok.. so watching jgriffin's push is no longer useful.. now I need to look at roc's backout push, right?
  637. # [04:16] <dholbert> ewong, correct
  638. # [04:16] <ewong> dholbert: thanks for the help in understanding this..
  639. # [04:16] <ewong> bz thanks!
  640. # [04:16] <@bz> tbsaunde: whitespace around those macros is hard. :(
  641. # [04:16] <dholbert> ewong, any time!
  642. # [04:16] <@bz> ewong: Any time. Snide sarcasm is always free over here. ;)
  643. # [04:16] * Joins: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  644. # [04:16] <ewong> ;P
  645. # [04:17] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  646. # [04:18] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  647. # [04:18] <ewong> there's an unstarred B2G Arm opt X for https://tbpl.mozilla.org/?rev=edd45de440ba (as well as an orange bc)
  648. # [04:19] * Joins: markh (Instantbir@CE947AE5.9D3E6021.78BA16EF.IP)
  649. # [04:19] <ewong> ok.. the orange winxp debug bc is starred..
  650. # [04:20] * Joins: a-865 (fmcz@moz-A5D13CA.cable.mindspring.com)
  651. # [04:20] * Quits: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Ping timeout)
  652. # [04:20] <dholbert> ewong, if you have an interest in things being starred, keep in mind that you have the power to investigate & star them :)
  653. # [04:21] <ewong> dholbert: starring seems 'easy'.. will need to practice with the investigate part..
  654. # [04:21] <Callek> ewong: famous last words
  655. # [04:21] <ewong> Callek lol
  656. # [04:22] <jdm> boom
  657. # [04:22] <jdm> I'm seeing stars
  658. # [04:22] * Quits: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  659. # [04:22] <jdm> I find starring soothing
  660. # [04:22] <jdm> it is a pleasantly mindless activity of pattern recognition
  661. # [04:23] <Callek> in-fact http://quotes.burntelectrons.org/6712
  662. # [04:23] <Callek> ewong: sorry couldn't resist
  663. # [04:23] <ewong> d'oh!
  664. # [04:27] <ewong> dholbert: would there happen to be a 'wiki' of some sort in understanding how to investigate reds?
  665. # [04:28] <jdm> nope
  666. # [04:28] * Joins: espindola (espindola@moz-85711076.dsl.teksavvy.com)
  667. # [04:28] <jdm> with reds on android, it's worth looking in the log around the error reported
  668. # [04:28] <jdm> seeing if it looks like some kind of infrastructure failure
  669. # [04:28] * Joins: cilias (cilias@moz-D8CAF7D8.cpe.net.cable.rogers.com)
  670. # [04:29] <ewong> this red X doesn't look like infrastructure.. looks like a code.. (but I'm not familiar wiith the code.. so I could be wrong)
  671. # [04:29] <jdm> ewong: is this the one on jgriffin's push?
  672. # [04:29] <jdm> interesting
  673. # [04:29] <ewong> jdm yeah
  674. # [04:30] <nigelb> jdm: hi!
  675. # [04:30] <ewong> jdm actually no.. it's on rjesup's push on m-c
  676. # [04:30] <jdm> hi nigelb!
  677. # [04:30] <dholbert> ewong, my general red-investigation technique is to do Ctrl+F, type "error code", and look backwards from the end of the log to find the first nonzero error code
  678. # [04:30] <dholbert> er "exit code" i think
  679. # [04:30] <nigelb> jdm: I want to grab you about bugs ahoy, if you still need help.
  680. # [04:30] <jdm> nigelb: I totally do
  681. # [04:31] <dholbert> ewong, most reds result in a nonzero exit code right after the brokenness
  682. # [04:31] <nigelb> jdm: where is it's repo?
  683. # [04:31] <njn> why am I getting a build failure caused by make complaining about a .gdbinit file?
  684. # [04:31] <jdm> nigelb: https://github.com/jdm/bugsahoy
  685. # [04:31] <jdm> njn: probably because it was moved today
  686. # [04:31] <nigelb> jdm: you should perhaps link that in your blog post :)
  687. # [04:32] <jdm> that's fair!
  688. # [04:32] <jdm> it's also linked on the page itself
  689. # [04:32] <njn> jdm: I just updated my m-i repo, and am doing a clobber build...
  690. # [04:32] <dholbert> ewong: my "exit-code-sleuthing" only applies if there isn't stuff highlighted at the top of the log, though. If there is something highlighted (as with the red "X"), then that'll take you more directly to the error, usually
  691. # [04:33] <dholbert> ewong, and then you'd want to search bugzilla for some key words involved with the error (the test name, the error message), to see if there's a bug filed on it already
  692. # [04:33] * Joins: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  693. # [04:33] <ewong> dholbert: ok.. trying that out
  694. # [04:34] <dholbert> ewong, TBPL automates this for you, partly, so it may already suggest the right thing when you click the red log. (though if you're unsure, you'd want to click through to the suggested bug first, to verify that it looks like the same issue, before starring it)
  695. # [04:34] * Quits: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net) (Ping timeout)
  696. # [04:34] * Joins: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net)
  697. # [04:34] <ewong> dholbert: well this red X doesn't seem to fit any of the suggested bugs.. and the last error seems to be infrastructure related..
  698. # [04:35] <sankha93> bz: I have uploaded the CanvasPattern patch
  699. # [04:35] <@bz> sankha93: great
  700. # [04:36] <sankha93> bz: Now I am starting with TextMetrics..
  701. # [04:36] <sankha93> or should I do CanvasGradient ?
  702. # [04:37] <dholbert> ewong, usually you want to look for the _first_ error in the log, actually (I just start searching from the end because there's a lot of exit codes, and usually if there's an error it's at the end)
  703. # [04:37] * @bz has no opinion
  704. # [04:37] * sankha93 thinks of TextMetrics
  705. # [04:37] <dholbert> ewong, in this case, looks like it's for "UnicodeDecodeError: 'utf8' codec can't decode byte 0xa3 in position 98: unexpected code byte". No idea what that indicates
  706. # [04:37] <ewong> oh.. first error.. ok
  707. # [04:37] <dholbert> first nonzero exit code, that is
  708. # [04:37] <dholbert> yeah
  709. # [04:38] <gps> dholbert: pastebin the UnicodeDecodeError, please
  710. # [04:38] <dholbert> ewong, I could believe that that's caused by a connectivity issue between the harness & the b2g device.
  711. # [04:38] <dholbert> gps, sure one sec
  712. # [04:38] <dholbert> gps, http://pastebin.mozilla.org/1991453
  713. # [04:39] <dholbert> gps, it's python 2.6, your favorite!
  714. # [04:39] <ewong> Oh.. I was looking at the WARNING.. and not ERROR.. ;/
  715. # [04:40] <gps> doesn't matter - mozharness is assuming all input is UTF-8. which is ideal, but probably wrong
  716. # [04:40] <gps> if only every tool we had properly UTF-8 encoded all output
  717. # [04:40] * Quits: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net) (Ping timeout)
  718. # [04:41] <ewong> dholbert: so it's that traceback that's the error and not the "Fatal signal 7 (SIGBUS) at..."?
  719. # [04:41] <aki> sorry, https://bugzilla.mozilla.org/show_bug.cgi?id=782312
  720. # [04:41] <gps> dholbert: you should file a bug against mozharness
  721. # [04:41] <aki> yeah, we can work around that specific error
  722. # [04:41] <gps> aki: you should probably .decode('UTF-8', 'replace')
  723. # [04:42] <dholbert> gps, could you, perchance? I'm on my way out the door in a few min.
  724. # [04:42] <gps> you should also file a bug against whatever produced non-UTF-8 output
  725. # [04:42] <dholbert> gps, (and I was just glancing at this log to help ewong investigate reds)
  726. # [04:42] <dholbert> ewong, not sure, but often the first error in a log ends up causing the later errors
  727. # [04:42] <gps> fair - well, aki is here. sounds like bug 782312?
  728. # [04:43] <aki> will .decode('UTF-8', 'replace') get around this?
  729. # [04:43] * lightsofapollo|afk is now known as lightsofapollo
  730. # [04:43] <dholbert> ewong, but your "Fatal signal 7" does sound pretty blameworthy. :)
  731. # [04:43] <dholbert> ewong, so you're probably right in that being the problem. (sounds like a crash)
  732. # [04:43] * Joins: coyotebush (corey@moz-31CC2724.dsl.dynamic.sonic.net)
  733. # [04:43] <dholbert> or one of the problems at least
  734. # [04:43] * Quits: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.89 [Firefox 20.0a1/20121210042338])
  735. # [04:44] <ewong> dholbert: so it's totally unrelated to the patch, right?
  736. # [04:44] <ewong> but then again, the harness errors seem to tell me otherwise...
  737. # [04:44] <nigelb> jdm: I'll clone and see what I can do.
  738. # [04:44] <jdm> nigelb: <3
  739. # [04:45] <nigelb> :)
  740. # [04:46] <dholbert> ewong, dunno. have to go in a sec, can't really look
  741. # [04:46] <dholbert> ewong, one quick and easy way to tell is to retrigger it
  742. # [04:46] <ewong> dholbert: ok.. thanks for taking the time with this..
  743. # [04:46] <dholbert> s/tell/get a good idea/
  744. # [04:46] <ewong> explanation
  745. # [04:46] <dholbert> ewong, sure!
  746. # [04:46] <dholbert> ewong, retrigger = click the red log, then click the "+" at the bottom of tbpl
  747. # [04:46] <dholbert> ewong, this will request another run of that job
  748. # [04:47] <dholbert> ewong, you have to authenticate with ldap to do it (it'll prompt you)
  749. # [04:47] <ewong> dholbert: yeah..I'm in the self-serve now.. just need to find that red
  750. # [04:47] <dholbert> ewong, self-serve probably isn't necessary
  751. # [04:47] <dholbert> just use the "+", it's easier
  752. # [04:48] <dholbert> ewong, just click the red "X", and then click the "+" at the upper-right of the lower-left pane on TBPL (above "took 17 mins")
  753. # [04:48] <ewong> Ooooooh I did not know that
  754. # [04:48] <dholbert> it's just a shortcut
  755. # [04:48] <dholbert> to self-serve
  756. # [04:48] <ewong> ok.. I got it .. whoever did that ++
  757. # [04:48] <dholbert> ok, I'm heading out in a minute -- ttyl!
  758. # [04:48] * dholbert is now known as dholbert|afk
  759. # [04:48] <gps> aki: .decode('UTF-8', 'replace') will attempt to decode a byte stream as UTF-8. for every invalid byte sequence, it will insert U+FFFD (represented as "?")
  760. # [04:49] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  761. # [04:49] <aki> ok
  762. # [04:49] <gps> altneratively, you could 'ignore' to drop the sequences all together
  763. # [04:50] <gps> I like 'replace' because it lets you know something is emitting "not UTF-8"
  764. # [04:51] * Quits: @roc (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  765. # [04:51] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  766. # [04:51] <aki> https://bugzilla.mozilla.org/attachment.cgi?id=691680&action=edit
  767. # [04:51] <gps> FWIW, our test runners generally don't do a good job of escaping/encoding output. there is likely a lot of output that isn't "one encoding"
  768. # [04:52] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  769. # [04:52] <gps> we have issues with the build system emitting mixed encodings. e.g. the MSVC compiler will emit localized output in the default system encoding while the Python tools will emit UTF-8 or ASCII
  770. # [04:53] <@bz> sanhka93: ping?
  771. # [04:53] <@bz> sankha93: ^
  772. # [04:53] <sankha93> yeah bz
  773. # [04:54] <aki> gps: i was thinking trying utf8, catching the exception, then trying others and failing out somehow, not sure if that's overengineering
  774. # [04:54] * Quits: cpeterson (cpeterson@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  775. # [04:54] <@bz> sankha93: have you run tests on this patch?
  776. # [04:55] <@bz> sankha93: at least manual ones for getting a pattern style and such?
  777. # [04:55] <sankha93> bz: no..
  778. # [04:55] <gps> aki: encodings are hard. some byte sequences are valid in multiple encodings
  779. # [04:55] <@bz> But better yet everything in content/canvas/test/
  780. # [04:56] * Quits: Mardak (Mardak@43CB6079.66715431.D25A875A.IP) (Quit: Mardak)
  781. # [04:56] <sankha93> bz: mochitest-chrome or mochitest-plain?
  782. # [04:56] <gps> I /think/ most of the things you deal with in mozharness should be UTF-8 or close to it
  783. # [04:56] <@bz> sankha93: plain
  784. # [04:56] <aki> gps: yeah, but that bug is evidence that most is not all
  785. # [04:57] <@bz> sankha93: in any case, your GetParentObject() should just return void* or nsISupports*, not nsINode*
  786. # [04:57] * Joins: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net)
  787. # [04:57] <@bz> sankha93: and more importantly, you need to do cycle collection for CanvasPattern...
  788. # [04:57] <sankha93> bz: ok! i'll change that nsINode
  789. # [04:57] <gps> all it takes is for one test to print() a raw byte sequence and there (might) go your UTF-8
  790. # [04:57] * glob is now known as glob|away
  791. # [04:58] <sankha93> bz: I am not clear on the cycle collection part. what does it do
  792. # [04:58] <@bz> sankha93: and please do run the tests, because you're relying on xpconnect wrapping for this object...
  793. # [04:58] <sankha93> ?
  794. # [04:58] <@bz> sankha93: Makes things not leak.
  795. # [04:58] <@bz> sankha93: And if you have a wrapper cache, you have to do it. Otherwise you can leak.
  796. # [04:58] <gps> also, terminals complicate things. arguably you should look at the encoding for the terminal and honor that. files, we can define behavior. we should be using files with strong encoding requirements for all automated consumers
  797. # [04:58] <@bz> sankha93: basically by forming a reference cycle through JS
  798. # [04:58] * Quits: glob|away (glob@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: Leaving...)
  799. # [04:59] <@bz> sankha93: C++ object keeps cached wrapper alive, wrapper keeps C++ object alive, neither can be freed.
  800. # [04:59] <aki> landed, rerunning the job will use this logic
  801. # [04:59] <aki> (or any new test job)
  802. # [04:59] <sankha93> bz: ok! now I get it
  803. # [05:01] <gps> aki: I'm not sure how strong your Python/Unicode powers are. if not at Jedi level, I highly recommend watching http://pyvideo.org/video/948/pragmatic-unicode-or-how-do-i-stop-the-pain
  804. # [05:01] * Quits: cpearce (cpearce@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  805. # [05:01] <aki> definitely not jedi, more like "starting to understand why they redid unicode in python 3" level
  806. # [05:02] * Joins: pcwalton (pcwalton@moz-481A040C.hsd1.ca.comcast.net)
  807. # [05:02] <markh> the next stage of enlightenment is then wondering *why* they redid unicode in python 3 ;)
  808. # [05:02] * Joins: phx (Adium@DA386262.E8E44173.689607DE.IP)
  809. # [05:03] <gps> then please watch that video and share the link with everyone you know :)
  810. # [05:03] <aki> will do
  811. # [05:03] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  812. # [05:04] * markh is 3/4 joking - but that remaining 1/4 exists...
  813. # [05:04] * sheeri-afk is now known as sheeri
  814. # [05:05] <gps> markh: Python 3 is arguably what it should have been from the start
  815. # [05:06] <markh> gps: yeah, I agree, although it almost comes with a promise that "unicode is no longer hard in py3k" - which isn't true...
  816. # [05:06] <gps> the big problem with Python 2 (IMO) is that it automatically attempts to coerce byte sequences and Unicode into each other using the default system encoding (ASCII on Python 2). this causes a world of hurt
  817. # [05:06] <markh> yep, agreed
  818. # [05:06] <gps> Unicode is hard. period.
  819. # [05:07] <gps> it's not made easier by the fact that byte sequences don't self-identify their encoding. the encoding is out of bad. so what are things like terminals (stdout, stdin) supposed to do?
  820. # [05:07] <gps> even with HTML there are like 5 places you can define the encoding. it's a mess
  821. # [05:07] * Quits: Jesse (jruderman@2557E599.66715431.D25A875A.IP) (Quit: Jesse)
  822. # [05:08] * Quits: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP) (Quit: Lost terminal)
  823. # [05:09] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Connection reset by peer)
  824. # [05:09] * Joins: WeirdAl (chatzilla@moz-857040DF.hsd1.ca.comcast.net)
  825. # [05:09] * Joins: hub (hub@66BD7990.B75F6E78.41EED93B.IP)
  826. # [05:10] * Quits: coyotebush (corey@moz-31CC2724.dsl.dynamic.sonic.net) (Ping timeout)
  827. # [05:10] * Joins: Jesse (jruderman@2557E599.66715431.D25A875A.IP)
  828. # [05:10] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  829. # [05:10] * Quits: Jesse (jruderman@2557E599.66715431.D25A875A.IP) (Input/output error)
  830. # [05:11] * Joins: randix_ (rdow@45355E35.CFBC10F9.8B52D585.IP)
  831. # [05:11] * sheeri is now known as sheeri-afk
  832. # [05:12] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  833. # [05:13] * Quits: randix_ (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  834. # [05:13] <@bz> 5?
  835. # [05:13] <markh> yeah, which is one kinda downside of some of the py3k changes - they can lead you into a false sense of security that your input is magically unicode - and when you test it from a terminal it is - but when it's not you (a) get very confused and (b) need to dig below the candy to make it work at all.
  836. # [05:13] <@bz> Two ways with meta, HTTP header, BOM
  837. # [05:13] <@bz> Yeah, close enough.
  838. # [05:14] <gps> bz: can't you also do something inline in HTML?
  839. # [05:14] <gps> doctype?
  840. # [05:14] <@bz> meta tags
  841. # [05:14] <@bz> not doctype
  842. # [05:15] <@bz> like I said, "two ways with meta"
  843. # [05:15] <gps> and BOM is only for UTF-16, no?
  844. # [05:15] <@bz> yes
  845. # [05:15] <@bz> But still!
  846. # [05:15] <gps> out of curiosity, is the override behavior of all those governed by a spec?
  847. # [05:16] <@bz> As in, the order you look at them in?
  848. # [05:16] <@bz> There's a spec.
  849. # [05:16] <@bz> It's in flux.
  850. # [05:16] <gps> I think that code would scare me
  851. # [05:16] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  852. # [05:17] <@bz> eh
  853. # [05:17] <@bz> that sort of thing is simple
  854. # [05:17] <tbsaunde> gps: but there's only one value any of those things should have ;)
  855. # [05:17] <@bz> The code that should scare you is anything involving "navigate"
  856. # [05:18] * heycam|away is now known as heycam
  857. # [05:18] <gps> sometimes I don't mind sitting higher up in the stack, so to speak. it's almost like I'm in an ivory tower. almost
  858. # [05:18] * Joins: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  859. # [05:19] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: Eaten by grue.)
  860. # [05:21] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  861. # [05:22] <ewong> any sheriffs around to point out if I'm looking at filing two bugs or just one bug for this log? https://tbpl.mozilla.org/php/getParsedLog.php?id=17890594&tree=Firefox&full=1
  862. # [05:23] <ewong> and if the new bug should be Boot2Gecko?
  863. # [05:23] * Joins: sworkman (sworkman@moz-825EC923.hsd1.ca.comcast.net)
  864. # [05:23] * Quits: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: seth)
  865. # [05:24] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  866. # [05:24] * Quits: Mook (mook@moz-8F011215.dsl.teksavvy.com) (Quit: Mook)
  867. # [05:25] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  868. # [05:25] * nthomas is now known as nthomas|away
  869. # [05:26] * mattwoodrow is now known as mattwoodrow|away
  870. # [05:28] * Joins: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  871. # [05:28] * Joins: coyotebush (corey@moz-31CC2724.dsl.dynamic.sonic.net)
  872. # [05:32] <ewong> I starred https://tbpl.mozilla.org/php/getParsedLog.php?id=17883773&tree=Firefox&full=1 as bug
  873. # [05:32] <ewong> as bug #821167
  874. # [05:32] * Quits: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP) (Client exited)
  875. # [05:32] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  876. # [05:34] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  877. # [05:35] * Joins: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  878. # [05:36] * Joins: cpearce (cpearce@moz-9EEA206C.xdsl.xnet.co.nz)
  879. # [05:37] <aki> yeah, 16:50:25 ERROR - This usually indicates the B2G process has crashed
  880. # [05:39] * Quits: gandalf (zbraniecki@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: Computer has gone to sleep.)
  881. # [05:40] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  882. # [05:43] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  883. # [05:44] <ewong> thanks aki!
  884. # [05:44] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  885. # [05:45] <ewong> aki but if it crashed twice (2nd time on a retrigger), does it mean it's a code issue?
  886. # [05:45] * Joins: ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP)
  887. # [05:45] * ChanServ sets mode: +o ehsan
  888. # [05:47] * Joins: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net)
  889. # [05:47] * Quits: jesup_ (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net) (Ping timeout)
  890. # [05:49] * Joins: jesup_ (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net)
  891. # [05:49] * Quits: coyotebush (corey@moz-31CC2724.dsl.dynamic.sonic.net) (Ping timeout)
  892. # [05:49] * Joins: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net)
  893. # [05:51] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  894. # [05:51] * Joins: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP)
  895. # [05:53] * Quits: jesup_ (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net) (Ping timeout)
  896. # [05:53] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  897. # [05:55] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  898. # [05:56] * Quits: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net) (Quit: Leaving.)
  899. # [05:56] <ewong> hmm seems like as if bug#821167 seems to have seeped into m-i as well..
  900. # [05:56] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  901. # [05:57] * capella is now known as capella|zzz
  902. # [05:58] * Quits: jlin (Jonathan@moz-619C4F64.x.rootbsd.net) (Quit: -offline-)
  903. # [05:59] * Quits: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP) (Quit: Computer has gone to sleep.)
  904. # [06:02] * jwir3|dinner is now known as jwir3|away
  905. # [06:04] * Quits: cpearce (cpearce@moz-9EEA206C.xdsl.xnet.co.nz) (Ping timeout)
  906. # [06:04] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  907. # [06:07] * Quits: bsmith (bsmith@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  908. # [06:08] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  909. # [06:08] <tbsaunde> so, whatis this DASH thing that requires webm?
  910. # [06:10] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  911. # [06:12] * Joins: Elen (El@moz-749635E7.hsd1.ut.comcast.net)
  912. # [06:13] * Quits: nrc (nrc@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  913. # [06:16] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  914. # [06:16] * hwine-food is now known as hwine
  915. # [06:16] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  916. # [06:17] * Quits: sunwc (sunwc@moz-DAE03C6E.dynamic.hinet.net) (Ping timeout)
  917. # [06:17] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  918. # [06:17] * Quits: masayuki (Thunderbir@moz-66BDE38.ppp11.odn.ad.jp) (Connection reset by peer)
  919. # [06:21] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  920. # [06:22] * Joins: sn0wb1rd_ (sn0wb1rd@moz-7DC12C05.sb.sd.cox.net)
  921. # [06:25] * Quits: ehugg_ (chatzilla@moz-44D86B1E.cisco.com) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121129162756])
  922. # [06:26] * Joins: sankha931 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  923. # [06:26] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  924. # [06:27] * Quits: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Ping timeout)
  925. # [06:29] <@dolske> ?
  926. # [06:29] * hwine is now known as hwine-zzz
  927. # [06:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8435a5715fa7 - Kartikaya Gupta - Bug 780831 - Guard against plugin code leaking refs in the JNI local ref table. r=snorp
  928. # [06:36] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  929. # [06:37] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  930. # [06:37] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  931. # [06:38] * Quits: abr (abr@moz-1A94780F.lightspeed.dllstx.sbcglobal.net) (Connection reset by peer)
  932. # [06:39] * Joins: abr (abr@moz-1A94780F.lightspeed.dllstx.sbcglobal.net)
  933. # [06:39] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  934. # [06:39] * Joins: masayuki (Thunderbir@moz-66BDE38.ppp11.odn.ad.jp)
  935. # [06:42] * Joins: spohl (Adium@moz-4EB1AD80.lightspeed.sntcca.sbcglobal.net)
  936. # [06:42] * Quits: StevenLee (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  937. # [06:45] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  938. # [06:46] * Quits: espindola (espindola@moz-85711076.dsl.teksavvy.com) (Quit: Ex-Chat)
  939. # [06:47] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  940. # [06:47] * Joins: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net)
  941. # [06:50] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  942. # [06:50] * Joins: cabanier (cabanier@moz-F663EC4A.hfc.comcastbusiness.net)
  943. # [06:51] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  944. # [06:53] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  945. # [06:53] * Quits: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net) (Ping timeout)
  946. # [06:53] * Joins: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net)
  947. # [06:55] * Quits: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net) (Ping timeout)
  948. # [06:55] * Joins: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net)
  949. # [06:57] * Joins: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk)
  950. # [06:57] * Quits: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net) (Ping timeout)
  951. # [06:57] * Joins: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net)
  952. # [06:57] * cjones is now known as cjones-brb
  953. # [06:58] <ewong> if I'm looking at https://tbpl.mozilla.org/php/getParsedLog.php?id=17892061&tree=Mozilla-Inbound&full=1#error0, and I don't see any reported bugs, I need to file a new bug, right? and in this case, which bug product/component should I file it in?
  954. # [06:59] * Joins: StevenLee_ (chatzilla@moz-99690620.hinet-ip.hinet.net)
  955. # [06:59] <ewong> this is from the Linux64 debug M-bc from https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=0368b4c03c63
  956. # [06:59] * Quits: lmandel (lmandel@FE1F74.86ED00A7.971E19F6.IP) (Quit: lmandel)
  957. # [06:59] <ewong> err sorry.. looking at the wrong line.. it's OS X 10.6 debug M-bc
  958. # [06:59] * Quits: WeirdAl (chatzilla@moz-857040DF.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.89 [Firefox 17.0/20121120085223])
  959. # [07:00] * Quits: Asa (asa@moz-FA2E1265.hfc.comcastbusiness.net) (Ping timeout)
  960. # [07:02] * Quits: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Quit: Leaving.)
  961. # [07:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/11965bca7513 - Ehsan Akhgari - Bug 821178 - Part 0: Remove browser_248970_{a,b}.js in per-window PB builds
  962. # [07:03] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  963. # [07:04] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  964. # [07:04] * Quits: sworkman (sworkman@moz-825EC923.hsd1.ca.comcast.net) (Quit: sworkman)
  965. # [07:05] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Quit: Mardak)
  966. # [07:05] * Quits: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net) (Client exited)
  967. # [07:05] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Ping timeout)
  968. # [07:06] * Joins: dzbarsky (Adium@moz-E8FD3032.phlapa.east.verizon.net)
  969. # [07:06] * Joins: glob (glob@moz-23941FA.dsl.pltn13.sbcglobal.net)
  970. # [07:06] * Quits: glob (glob@moz-23941FA.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
  971. # [07:07] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  972. # [07:07] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bc5a2f85d15e - Johan Charlez - Bug 433168 - Context menu is not shown for form buttons and select elements. r=gavin
  973. # [07:07] * Joins: randix_ (rdow@45355E35.CFBC10F9.8B52D585.IP)
  974. # [07:07] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  975. # [07:07] * randix_ is now known as randix
  976. # [07:09] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  977. # [07:09] * Joins: Optimizer (Instantbir@9D88CC50.62837B7B.1807BA01.IP)
  978. # [07:09] * Quits: Optimizer (Instantbir@9D88CC50.62837B7B.1807BA01.IP) (Input/output error)
  979. # [07:09] * Joins: Optimizer (Instantbir@9D88CC50.62837B7B.1807BA01.IP)
  980. # [07:11] * Quits: gustavold (gustavold@9FF57A6A.27C9FAA1.6535E70B.IP) (Quit: Leaving.)
  981. # [07:12] * Joins: bsmith (bsmith@moz-50026E44.dsl.pltn13.sbcglobal.net)
  982. # [07:12] * Quits: Dhruv (Dhruv@DDE598E9.EE67E8C2.388CF16F.IP) (Ping timeout)
  983. # [07:15] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Quit: Mardak)
  984. # [07:17] * Joins: bmoss (bmoss@moz-FA2E1265.hfc.comcastbusiness.net)
  985. # [07:17] * Joins: Dhruv (Dhruv@DDE598E9.EE67E8C2.388CF16F.IP)
  986. # [07:17] * Quits: pcwalton (pcwalton@moz-481A040C.hsd1.ca.comcast.net) (Quit: pcwalton)
  987. # [07:20] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  988. # [07:20] * Quits: tchevalier (Thunderbir@moz-CF45248.w109-210.abo.wanadoo.fr) (Quit: tchevalier)
  989. # [07:22] * cjones-brb is now known as cjones
  990. # [07:22] * Joins: gandalf (zbraniecki@moz-4F155DA6.hsd1.ca.comcast.net)
  991. # [07:24] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  992. # [07:24] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  993. # [07:24] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/eddc239db462 - Edgar Chen - Bug 819834 - Part 1: The options should be null. r=allstars.chh
  994. # [07:24] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/caf2b8ec76f9 - Edgar Chen - Bug 819834 - Part 2: Marionette tests. r=allstars.chh
  995. # [07:25] * Quits: cilias (cilias@moz-D8CAF7D8.cpe.net.cable.rogers.com) (Quit: cilias)
  996. # [07:25] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Connection reset by peer)
  997. # [07:29] * Joins: past (Instantbir@moz-4160552A.dsl.dyn.forthnet.gr)
  998. # [07:32] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  999. # [07:33] * bz is now known as bz_sleep
  1000. # [07:36] * Joins: glob (glob@moz-23941FA.dsl.pltn13.sbcglobal.net)
  1001. # [07:36] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  1002. # [07:39] * Quits: bmoss (bmoss@moz-FA2E1265.hfc.comcastbusiness.net) (Quit: bmoss)
  1003. # [07:39] <heycam> oh hello little bug man
  1004. # [07:40] <glob> yup
  1005. # [07:40] <glob> 2 more to go
  1006. # [07:41] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  1007. # [07:42] * Joins: wolfiR (wolfiR@moz-F46C8C72.dip0.t-ipconnect.de)
  1008. # [07:45] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  1009. # [07:46] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  1010. # [07:46] <aki> ewong: i think so
  1011. # [07:47] * Quits: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  1012. # [07:47] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  1013. # [07:50] * Joins: kenchang (kenchang@moz-99690620.hinet-ip.hinet.net)
  1014. # [07:56] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  1015. # [07:57] * whimboo|afk is now known as whimboo
  1016. # [07:58] * Joins: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  1017. # [07:58] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  1018. # [07:59] <glandium> glob: did you just break hg bzexport?
  1019. # [07:59] <glob> glandium, bmo i experiencing some technical difficulties, IT are looking
  1020. # [07:59] <glandium> ok
  1021. # [08:01] * Quits: AryehGregor (AryehGrego@CCD2EA05.CF9ADB91.C605BBF7.IP) (Ping timeout)
  1022. # [08:03] * Joins: AryehGregor (AryehGrego@98150D06.1046AFE0.344ACB3.IP)
  1023. # [08:03] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1024. # [08:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/72913ea85419 - Blake Kaplan - Bug 821158 - Extract a number out of the size_t-containing object. r=jst
  1025. # [08:07] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  1026. # [08:11] * Quits: sankha931 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Ping timeout)
  1027. # [08:11] * Quits: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net) (Quit: Leaving.)
  1028. # [08:11] * Joins: pascalc (chatzilla@moz-446F98C8.fbxo.proxad.net)
  1029. # [08:11] * Joins: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  1030. # [08:12] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  1031. # [08:13] * fabrice is now known as fabrice|zZz
  1032. # [08:14] <ewong> anyone know if https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=8435a5715fa7 should be backed out due to leakage?
  1033. # [08:14] <ewong> Linux debug M-4
  1034. # [08:17] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1035. # [08:17] * Quits: micadeyeye (micadeyeye@moz-BBFCC0F.dynamic.wa.co.za) (Ping timeout)
  1036. # [08:17] * Joins: teoli (teoli@88F51059.F3BBB17D.144F44FA.IP)
  1037. # [08:17] * Quits: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Quit: Leaving.)
  1038. # [08:18] * Conjuror is now known as atsai|desktop
  1039. # [08:20] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1040. # [08:20] * Joins: stransky (stransky@moz-FB491625.net.upcbroadband.cz)
  1041. # [08:25] * Quits: erick (erick@E1304535.2A7189BF.BE19388.IP) (Quit: leaving)
  1042. # [08:26] * Joins: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it)
  1043. # [08:28] * Joins: erick (erick@E1304535.2A7189BF.BE19388.IP)
  1044. # [08:35] * heycam is now known as heycam|away
  1045. # [08:35] * Quits: phx (Adium@DA386262.E8E44173.689607DE.IP) (Quit: Leaving.)
  1046. # [08:35] * heycam|away is now known as heycam
  1047. # [08:37] * Joins: TheOne (one@moz-B0E77D54.dip.t-dialin.net)
  1048. # [08:38] * Joins: randix_ (rdow@45355E35.CFBC10F9.8B52D585.IP)
  1049. # [08:39] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  1050. # [08:39] * randix_ is now known as randix
  1051. # [08:39] * Joins: Stan (Stan@moz-D7532F4E.dip.t-dialin.net)
  1052. # [08:39] * Quits: TheOne (one@moz-B0E77D54.dip.t-dialin.net) (Ping timeout)
  1053. # [08:41] * Joins: TheOne (one@moz-B0E77D54.dip.t-dialin.net)
  1054. # [08:42] * Joins: dao (dao@moz-DE32E385.superkabel.de)
  1055. # [08:42] * Joins: sicking (sicking@moz-7F871C5C.hsd1.ca.comcast.net)
  1056. # [08:43] * heycam is now known as heycam|away
  1057. # [08:44] * Quits: kenchang (kenchang@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1058. # [08:44] * Quits: TheOne (one@moz-B0E77D54.dip.t-dialin.net) (Input/output error)
  1059. # [08:45] * Joins: TheOne (one@moz-B0E77D54.dip.t-dialin.net)
  1060. # [08:45] * Quits: jgilbert (jgilbert@2557E599.66715431.D25A875A.IP) (Ping timeout)
  1061. # [08:46] * Quits: TheOne (one@moz-B0E77D54.dip.t-dialin.net) (Ping timeout)
  1062. # [08:48] * whimboo is now known as whimboo|afk
  1063. # [08:49] * Joins: Ms2ger (Ms2ger@7E4330C7.5D52DA65.3773EA9F.IP)
  1064. # [08:50] * Quits: OccupyGreenland (ericjung@moz-F14FA912.bstnma.fios.verizon.net) (Ping timeout)
  1065. # [08:50] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1066. # [08:51] * Quits: ericjung (Mibbit@moz-F14FA912.bstnma.fios.verizon.net) (Quit: http://www.mibbit.com ajax IRC Client)
  1067. # [08:56] * Quits: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  1068. # [08:57] * Quits: dzbarsky (Adium@moz-E8FD3032.phlapa.east.verizon.net) (Quit: Leaving.)
  1069. # [08:58] * Joins: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP)
  1070. # [08:59] * Quits: cabanier (cabanier@moz-F663EC4A.hfc.comcastbusiness.net) (Quit: Leaving.)
  1071. # [09:05] * Joins: ericjung (Mibbit@moz-F14FA912.bstnma.fios.verizon.net)
  1072. # [09:06] * heycam|away is now known as heycam
  1073. # [09:06] * Joins: OccupyGreenland (ericjung@moz-F14FA912.bstnma.fios.verizon.net)
  1074. # [09:06] * Joins: dzbarsky (Adium@moz-E8FD3032.phlapa.east.verizon.net)
  1075. # [09:07] * Joins: dzbarsky1 (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  1076. # [09:08] * Quits: dzbarsky (Adium@moz-E8FD3032.phlapa.east.verizon.net) (Ping timeout)
  1077. # [09:09] * Quits: spohl (Adium@moz-4EB1AD80.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  1078. # [09:09] * Joins: RattyAway (Jim_diGriz@E1864F1C.E80E0C8E.FF82B9FE.IP)
  1079. # [09:10] <heycam> glob, that problem with bugzilla you mentioned before, is that still happening?
  1080. # [09:10] <glob> heycam, yes
  1081. # [09:10] * Quits: Dhruv (Dhruv@DDE598E9.EE67E8C2.388CF16F.IP) (Ping timeout)
  1082. # [09:10] <RattyAway> Hi! My build seems to have stuck in an endless loop for the last hour doing"Updating projects from gyp files..." Is this normal?
  1083. # [09:10] * Quits: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it) (Quit: Leaving.)
  1084. # [09:11] <heycam> glob, k thanks, I will stop refreshing then ;)
  1085. # [09:11] <glob> heycam, heh :)
  1086. # [09:11] * Joins: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it)
  1087. # [09:11] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1088. # [09:12] * Joins: Dhruv (Dhruv@DDE598E9.EE67E8C2.388CF16F.IP)
  1089. # [09:12] <gaston> oh m-c uses gyp now ?
  1090. # [09:13] * Quits: Hendikins (wolfox@5A884064.FF93A5CE.2F43CDB9.IP) (Ping timeout)
  1091. # [09:13] * Quits: capella|zzz (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Ping timeout)
  1092. # [09:13] <gaston> RattyAway: i think you should ask gps
  1093. # [09:13] * Quits: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  1094. # [09:13] * Joins: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au)
  1095. # [09:13] * Joins: capella|zzz (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  1096. # [09:13] <heycam> I have a feeling it's used for some subprojects like webrtc, but not sure
  1097. # [09:14] <RattyAway> gaston: I think its just webrtc at the moment...
  1098. # [09:14] <RattyAway> gps^^
  1099. # [09:14] <heycam> RattyAway, I suspect the answer to "Is this normal?" is no, though :)
  1100. # [09:14] <gaston> right, find only reports a whole bunch of gyp files under webrtc
  1101. # [09:15] <gfritzsche> Can bmo be persuaded to include links to the comment in the bug mail?
  1102. # [09:15] <glob> gfritzsche, yes, enable html bugmail
  1103. # [09:15] <gfritzsche> glob, ah, cheers
  1104. # [09:16] <glob> gfritzsche, note: there's an issue with gmail & html bugmail which needs fixing (tiny tiny text)
  1105. # [09:16] * Joins: ferjm (ferjm@53EF5629.3416E031.E21948B5.IP)
  1106. # [09:17] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  1107. # [09:17] <Ms2ger> Bonjour
  1108. # [09:17] <Ms2ger> gaston, yeah, we convert the gyp files into makefiles
  1109. # [09:18] <hsivonen> do we have something more like “mochitest browser chrome for dummies” than https://developer.mozilla.org/en-US/docs/Browser_chrome_tests ?
  1110. # [09:18] * Joins: m_kato (m_kato@moz-348F61F0.mozilla.or.jp)
  1111. # [09:18] <gaston> Ms2ger: and then convert them back to gyp ? :p
  1112. # [09:18] <hsivonen> I’d like to load a page, open a menu, load another page, open a menu
  1113. # [09:19] * Quits: randix (rdow@45355E35.CFBC10F9.8B52D585.IP) (Ping timeout)
  1114. # [09:19] <hsivonen> and see that certain submenu is disabled
  1115. # [09:20] * Joins: RealRaven (Thunderbir@83174943.9F09AD81.C3498625.IP)
  1116. # [09:20] <Ms2ger> gaston, we'll probably end up massaging the gyp output into mozbuild python objects and then serializing as processed gyp, yes
  1117. # [09:20] * Joins: nrc (nrc@4B76F2B0.D05BE748.613E47D1.IP)
  1118. # [09:21] * Joins: pnemsak (Miranda@moz-BE85878E.citicom.sk)
  1119. # [09:21] <gaston> what could go wrong ? (tm)
  1120. # [09:21] <RattyAway> :P
  1121. # [09:21] * Joins: martyn (martyn@moz-5E9CD98A.range86-165.btcentralplus.com)
  1122. # [09:21] * Joins: jandem (jandem@17CAA509.3FFC9B2.198A214C.IP)
  1123. # [09:22] <Ms2ger> gaston, a lot, but then again, it's a build system :)
  1124. # [09:22] * Joins: qpalzm (ck@C7C05874.E84ECEF3.3376CD77.IP)
  1125. # [09:22] <RattyAway> Bug 752657
  1126. # [09:23] <RattyAway> "Intermittent disconnect during Windows builds in WebRTC "Updating projects from gyp files..."
  1127. # [09:23] <RattyAway> https://bugzilla.mozilla.org/show_bug.cgi?id=820769#c2
  1128. # [09:23] <RattyAway> "catlee, should we be aborting the build sooner than 7+ hrs in?"
  1129. # [09:23] * Joins: arky (arky@952421B7.53BA259D.FA662B63.IP)
  1130. # [09:24] <RattyAway> so do I wait 7 hours or just CTRL-C now?
  1131. # [09:24] * Joins: Neil (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1132. # [09:25] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1133. # [09:25] * Neil is now known as NeilAway
  1134. # [09:25] <dao> !seen Enn
  1135. # [09:25] <Ms2ger> ctrl-c now
  1136. # [09:25] <firebot> enn was last seen 1 day, 13 hours, 46 minutes and 59 seconds ago, saying 'but never shows a focus ring' in #fx-team.
  1137. # [09:25] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Client exited)
  1138. # [09:25] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1139. # [09:25] * Joins: Stan_ (Stan@moz-7ADD4A5D.dip.t-dialin.net)
  1140. # [09:25] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  1141. # [09:26] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  1142. # [09:26] * heycam is now known as heycam|away
  1143. # [09:26] * Quits: Stan (Stan@moz-D7532F4E.dip.t-dialin.net) (Ping timeout)
  1144. # [09:27] * Quits: bnicholson (bnicholson@moz-E98974C1.hsd1.ca.comcast.net) (Ping timeout)
  1145. # [09:28] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Connection reset by peer)
  1146. # [09:28] * Quits: Optimizer (Instantbir@9D88CC50.62837B7B.1807BA01.IP) (Connection reset by peer)
  1147. # [09:28] * Joins: Optimizer (Instantbir@9D88CC50.62837B7B.1807BA01.IP)
  1148. # [09:28] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  1149. # [09:29] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  1150. # [09:31] * heycam|away is now known as heycam
  1151. # [09:31] * hsivonen wonders how much smaller the Firefox download size would be without about:robots
  1152. # [09:31] <KWierso|Home> not much?
  1153. # [09:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9ff7b0790b02 - Jan de Mooij - Bug 820105 - Add callWithABI overload that takes the callee as Address. r=dvander
  1154. # [09:31] * Joins: yoshi (Mibbit@F8B7871D.B62E48BC.F73732BB.IP)
  1155. # [09:32] <yoshi> hi everyone
  1156. # [09:32] <glob> heycam, bmo should be happier now
  1157. # [09:32] <heycam> glob, thanks!
  1158. # [09:34] <ewong> glob oh yes! thanks!
  1159. # [09:34] * Joins: cpearce (cpearce@moz-9EEA206C.xdsl.xnet.co.nz)
  1160. # [09:34] * Quits: ferjm (ferjm@53EF5629.3416E031.E21948B5.IP) (Ping timeout)
  1161. # [09:35] * Quits: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP) (Quit: Leaving.)
  1162. # [09:35] <glob> thanks go to our dba, mpressman, who bravely fought the db beast
  1163. # [09:36] * Quits: njn (chatzilla@EAB453D1.66A1342A.2CC906FD.IP) (Quit: ChatZilla 0.9.89 [Firefox 20.0a1/20121211044709])
  1164. # [09:37] * Quits: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net) (Connection reset by peer)
  1165. # [09:37] * Quits: dzbarsky1 (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Quit: Leaving.)
  1166. # [09:38] <gfritzsche> glob, even problematic if its optional? I'd actually prefer plaintext TBH :)
  1167. # [09:39] <glob> gfritzsche, i don't think the value is there for adding yet another preference
  1168. # [09:39] * capella|zzz is now known as capella
  1169. # [09:39] <glob> unlike firefox, we can't just hide the pref away
  1170. # [09:40] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  1171. # [09:40] <Ms2ger> Why not? Just add b.m.o/about/config
  1172. # [09:41] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1173. # [09:42] <gfritzsche> Or some "advanced options" tab? Aka, unsorted options we don't want to categorize
  1174. # [09:42] <gaston> 'Robots have shiny metal posteriors which should not be bitten.'
  1175. # [09:42] <gaston> sadface
  1176. # [09:43] <gaston> so politically correct
  1177. # [09:43] * Quits: yoshi (Mibbit@F8B7871D.B62E48BC.F73732BB.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1178. # [09:43] * Joins: glazou (glazou@moz-204094DD.disruptive-innovations.fr)
  1179. # [09:43] <gaston> i'll file a bug, truth should be restored!
  1180. # [09:43] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Quit: surkov)
  1181. # [09:44] <glob> gfritzsche, how good are you with perl?
  1182. # [09:44] <glazou> bonjour
  1183. # [09:45] * Joins: phx (Adium@DA386262.E8E44173.689607DE.IP)
  1184. # [09:45] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1185. # [09:45] * Quits: gandalf (zbraniecki@moz-4F155DA6.hsd1.ca.comcast.net) (Quit: I took the wrong pill!!!)
  1186. # [09:46] * mattwoodrow|away is now known as mattwoodrow
  1187. # [09:46] <gfritzsche> glob, i just know that it usually looks cryptic to me ;)
  1188. # [09:47] * dhylands is now known as dhylands|sleep
  1189. # [09:47] <gfritzsche> Why?
  1190. # [09:48] <glob> gfritzsche, bugzilla's written in perl, and patches are welcome :)
  1191. # [09:48] * heycam is now known as heycam|away
  1192. # [09:49] * glob really has to sleep, escapes
  1193. # [09:49] * Quits: glob (glob@moz-23941FA.dsl.pltn13.sbcglobal.net) (Quit: Leaving...)
  1194. # [09:49] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  1195. # [09:49] * Joins: ferjm (ferjm@53EF5629.3416E031.E21948B5.IP)
  1196. # [09:49] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  1197. # [09:49] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1198. # [09:51] * Joins: andreasn (andreasn@moz-FD3F641F.a336.priv.bahnhof.se)
  1199. # [09:51] * mattwoodrow is now known as mattwoodrow|away
  1200. # [09:52] * Quits: RattyAway (Jim_diGriz@E1864F1C.E80E0C8E.FF82B9FE.IP) (Quit: ChatZilla 0.9.89 [SeaMonkey 2.0.15pre/20110606000022])
  1201. # [09:53] * Quits: bsmith (bsmith@moz-50026E44.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1202. # [09:53] <hsivonen> hmm. somehow Firefox no longer wants to open new windows for me
  1203. # [09:53] <hsivonen> neither with ctrl-n nor from script
  1204. # [09:53] <glandium> hsivonen: linux?
  1205. # [09:53] <hsivonen> glandium: yeah
  1206. # [09:53] <hsivonen> it’s been like this for a while
  1207. # [09:53] <hsivonen> b
  1208. # [09:53] <glandium> hsivonen: there are two other people who complained about that
  1209. # [09:53] <hsivonen> ut
  1210. # [09:53] <glandium> never been hit
  1211. # [09:54] <hsivonen> but today I had to use Chrome for banking because of this
  1212. # [09:54] <hsivonen> I wonder if it’s a profile corruption thing
  1213. # [09:54] <hsivonen> wouldn’t want to rebuild profile *again*
  1214. # [09:55] <glandium> hsivonen: try firefox -P, then
  1215. # [09:56] <hsivonen> yeah, it’s a profile corruption thing
  1216. # [09:56] <hsivonen> sigh
  1217. # [09:56] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  1218. # [09:57] * Quits: phx (Adium@DA386262.E8E44173.689607DE.IP) (Quit: Leaving.)
  1219. # [09:57] <hsivonen> rm localstore.rdf didn’t help
  1220. # [09:58] * Quits: kmoir-afk (chatzilla@DFD4A584.2FE886BF.6816E6B7.IP) (Ping timeout)
  1221. # [09:59] <KWierso|Home> hsivonen: anything interesting in the error console when you try to open the new window?
  1222. # [10:03] <hsivonen> looks like it’ll take ages for the Error Console spam from the Web to stop after relaunching
  1223. # [10:06] <hsivonen> KWierso|Home: nothing in the error console
  1224. # [10:08] <hsivonen> hmm. why do I have chromeappsstore.sqlite in my *firefox* profile?
  1225. # [10:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/34840088cc10 - Jon Coppeard - Bug 820871 - GC: Validate gray marking r=billm
  1226. # [10:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/37b4c4b9d7d6 - Jon Coppeard - Bug 820422 - GC: Store buffered gray roots per-compartment r=billm
  1227. # [10:08] * Joins: cviecco (cviecco@moz-2BC4CC72.hsd1.ca.comcast.net)
  1228. # [10:09] * Joins: Honza (chatzilla@5AD2A1B9.23B79DE4.D0083327.IP)
  1229. # [10:09] <hsivonen> ooh. Safe Mode works
  1230. # [10:10] * Joins: tzimmermann (tzimmerman@moz-FD157AC9.pools.arcor-ip.net)
  1231. # [10:11] * Joins: erick__ (erick@E1304535.2A7189BF.BE19388.IP)
  1232. # [10:11] * Quits: erick__ (erick@E1304535.2A7189BF.BE19388.IP) (Quit: erick__)
  1233. # [10:12] <hsivonen> looks like the culprint is the DOM Inspector extension
  1234. # [10:12] * Quits: erick (erick@E1304535.2A7189BF.BE19388.IP) (NickServ (GHOST command used by erick_))
  1235. # [10:12] * Joins: erick (erick@E1304535.2A7189BF.BE19388.IP)
  1236. # [10:13] * erick is now known as erick__
  1237. # [10:13] * Joins: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net)
  1238. # [10:14] * Quits: andreasn (andreasn@moz-FD3F641F.a336.priv.bahnhof.se) (Ping timeout)
  1239. # [10:14] * Quits: erick__ (erick@E1304535.2A7189BF.BE19388.IP) (Quit: leaving)
  1240. # [10:15] * Joins: vtmarvin (Thunderbir@32DFDBE.7102BCB6.B7C3970A.IP)
  1241. # [10:15] * Joins: rniwa_ (rniwa@moz-E171DA5.sfba.hfc.comcastbusiness.net)
  1242. # [10:17] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1243. # [10:17] <hsivonen> hmm. Mass Password Reset does it too
  1244. # [10:17] * Quits: sn0wb1rd_ (sn0wb1rd@moz-7DC12C05.sb.sd.cox.net) (Quit: sn0wb1rd_)
  1245. # [10:17] <hsivonen> maybe any old-style (restart required) extension does
  1246. # [10:18] * Quits: sewardj (sewardj@moz-DC2051D3.dip.t-dialin.net) (Input/output error)
  1247. # [10:18] * Joins: graememcc (chatzilla@moz-8BA24341.range31-52.btcentralplus.com)
  1248. # [10:20] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1249. # [10:20] <ewong> !seen edmorley
  1250. # [10:20] <firebot> edmorley was last seen 13 hours, 8 minutes and 18 seconds ago, changing nick to edmorley|away.
  1251. # [10:21] <Ms2ger> What's up?
  1252. # [10:21] * Joins: erick (erick@E1304535.2A7189BF.BE19388.IP)
  1253. # [10:23] <qpalzm> !seen me
  1254. # [10:23] <firebot> me was last seen 17 weeks, 6 days, 7 hours, 34 minutes and 10 seconds ago, saying 'can someone help me?' in #b2g.
  1255. # [10:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/903c331107c2 - Georg Fritzsche - Bug 805330 - Ensure plugin widget visibility via paint flushes. r=josh,roc,robcee
  1256. # [10:24] * Quits: @dveditz (dveditz@A5A0595A.66715431.D25A875A.IP) (Ping timeout)
  1257. # [10:24] * Joins: dveditz (dveditz@A5A0595A.66715431.D25A875A.IP)
  1258. # [10:24] * ChanServ sets mode: +o dveditz
  1259. # [10:24] <jandem> tbpl is not showing green builds?
  1260. # [10:25] * Quits: seif (seiflotfy@moz-15E4AF49.unitymediagroup.de) (Connection reset by peer)
  1261. # [10:25] <ewong> Ms2ger should https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=8435a5715fa7 be backed out due to the leakage?
  1262. # [10:25] * Joins: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP)
  1263. # [10:25] <ewong> Ms2ger: Linux debug M-4
  1264. # [10:26] <gfritzsche> jandem, which? some are currently ignored and can be viewed by adding &noignore=1
  1265. # [10:26] * Quits: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net) (Quit: clee)
  1266. # [10:26] * Quits: stransky (stransky@moz-FB491625.net.upcbroadband.cz) (Quit: Connection reset by beer)
  1267. # [10:26] <jandem> gfritzsche: https://tbpl.mozilla.org/?tree=Mozilla-Inbound I don't see any green/orange/red for the last 4 commits or so
  1268. # [10:27] * Quits: birtles (chatzilla@moz-348F61F0.mozilla.or.jp) (Quit: ChatZilla 0.9.89-rdmsoft [XULRunner 1.9.0.17/2009122204])
  1269. # [10:27] <Ms2ger> ewong, bug 787312
  1270. # [10:27] <ewong> ooooh
  1271. # [10:28] * Joins: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net)
  1272. # [10:29] <gfritzsche> jandem, they are all still running, no?
  1273. # [10:29] <jandem> i don't think so
  1274. # [10:29] <jandem> maybe it's taking much longer than usual, dunno
  1275. # [10:32] * Quits: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net) (Quit: Leaving.)
  1276. # [10:32] * Joins: hummeleBop (Instantbir@moz-2356396.fbx.proxad.net)
  1277. # [10:35] <jandem> Ms2ger: you know who I can ask about tbpl problems?
  1278. # [10:36] <ewong> Ms2ger so the Win Debug M-4 should be bug #806041?
  1279. # [10:37] <Ms2ger> ewong, apparently
  1280. # [10:38] * Joins: Wolf_ (chatzilla@moz-F8C1AF63.carolina.res.rr.com)
  1281. # [10:38] * nthomas|away is now known as nthomas
  1282. # [10:38] * Joins: msucan (mihai@5D30AB1B.F63D1FEA.699550A1.IP)
  1283. # [10:38] * Wolf_ is now known as Wolf
  1284. # [10:38] <glazou> working on dockable panels is quite fun
  1285. # [10:39] <nthomas> gfritzsche: looks like new results aren't showing up, just pending and running builds
  1286. # [10:40] <nthomas> eg compare https://secure.pub.build.mozilla.org/buildapi/self-serve/mozilla-inbound/rev/72913ea85419 and https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=72913ea85419
  1287. # [10:40] <gfritzsche> nthomas, oh :/
  1288. # [10:41] <gfritzsche> edmorley, are you around?
  1289. # [10:41] <nthomas> I bet it I know what it is, will ask IT
  1290. # [10:41] <Ms2ger> nthomas, ta
  1291. # [10:43] * Quits: @dveditz (dveditz@A5A0595A.66715431.D25A875A.IP) (Ping timeout)
  1292. # [10:43] * Quits: m_kato (m_kato@moz-348F61F0.mozilla.or.jp) (Quit: Leaving...)
  1293. # [10:44] <glandium> nthomas: if that's what you think it is, will the result end up showing up on tbpl, or are they forever lost?
  1294. # [10:44] * Joins: Neil (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1295. # [10:45] * Joins: mcsmurf (me@moz-57CF4D5F.dip.t-dialin.net)
  1296. # [10:45] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1297. # [10:45] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  1298. # [10:45] <nthomas> glandium: I think it's a data import problem, but they won't be lost
  1299. # [10:45] * Neil is now known as NeilAway
  1300. # [10:45] <nthomas> bug 821232
  1301. # [10:45] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Client exited)
  1302. # [10:45] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1303. # [10:47] <mcsmurf> what's the best way to "send" some logging output in JS code to a file?
  1304. # [10:47] <mcsmurf> the problem is I want to log some data during shutdown and I use Windows
  1305. # [10:47] <mcsmurf> so nsIConsoleService probably won't help me much?
  1306. # [10:47] <mcsmurf> or can I keep the -console window somehow open?
  1307. # [10:48] * Joins: micadeyeye (micadeyeye@moz-BBFCC0F.dynamic.wa.co.za)
  1308. # [10:48] <mcsmurf> or will a general NSPR log catch the log output, too?
  1309. # [10:49] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  1310. # [10:49] * ChanServ sets mode: +o roc
  1311. # [10:49] <mcsmurf> (nsIConsoleService messages I mean)
  1312. # [10:52] <Archaeopteryx> mcsmurf: you could take a look at bug 799640
  1313. # [10:53] <Archaeopteryx> if you start with the cmd console already open, won't dump work for you?
  1314. # [10:53] <nthomas> tbpl is better now, if you refresh
  1315. # [10:53] <mcsmurf> lots of C++
  1316. # [10:53] <mcsmurf> Archaeopteryx: on Windows -console opens a extra window
  1317. # [10:53] <mcsmurf> which disappears as soon as the app has closed
  1318. # [10:54] <Archaeopteryx> and if you launch from cmd without -console?
  1319. # [10:54] <mcsmurf> then you get no log output at all :)
  1320. # [10:55] * Joins: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net)
  1321. # [10:55] <Archaeopteryx> i get some output there
  1322. # [10:55] <mcsmurf> yeah? for me the "control flow" goes directly back to the command line
  1323. # [10:55] <mcsmurf> hm..though
  1324. # [10:55] <mcsmurf> duh
  1325. # [10:55] <mcsmurf> well, I have an solution, should have thought of it
  1326. # [10:56] * Quits: micadeyeye (micadeyeye@moz-BBFCC0F.dynamic.wa.co.za) (Ping timeout)
  1327. # [10:56] <mcsmurf> I could just use a debug build :)
  1328. # [10:56] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  1329. # [10:56] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  1330. # [10:56] <mcsmurf> there the log output goes directly into the Windows console
  1331. # [10:56] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Quit: surkov)
  1332. # [10:58] * whimboo|afk is now known as whimboo
  1333. # [10:58] <Archaeopteryx> you can also log the error console messages to disk, but firefox likely kills all non-browser windows before shutdown. https://developer.mozilla.org/en-US/docs/Debugging_a_XULRunner_Application#JavaScript_Console
  1334. # [10:59] * Quits: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121128204232])
  1335. # [10:59] <mcsmurf> yeah, I'm probably quite late in the shutdown process, so that won't work for me
  1336. # [11:00] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  1337. # [11:07] * ewong is now known as ewong|away
  1338. # [11:08] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1339. # [11:10] * kk1fff|zzz is now known as kk1fff
  1340. # [11:10] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  1341. # [11:10] * Quits: atsai|desktop (Conjuror@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1342. # [11:11] * Quits: atsai (Conjuror@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1343. # [11:11] * Joins: mak (chatzilla@moz-147FD4E.retail.telecomitalia.it)
  1344. # [11:12] * Quits: cviecco (cviecco@moz-2BC4CC72.hsd1.ca.comcast.net) (Input/output error)
  1345. # [11:12] * nthomas is now known as nthomas|away
  1346. # [11:18] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  1347. # [11:18] * Joins: edmorley (edmorley@moz-5C2387B0.range109-156.btcentralplus.com)
  1348. # [11:18] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  1349. # [11:21] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1350. # [11:22] * Quits: Dagger (Dagger@moz-9AFCB530.cable.virginmedia.com) (Ping timeout)
  1351. # [11:26] * Joins: victorporof (victorporo@A9BBC05.B89616B1.79933D60.IP)
  1352. # [11:30] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  1353. # [11:31] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1354. # [11:33] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  1355. # [11:33] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Quit: surkov)
  1356. # [11:34] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  1357. # [11:35] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1358. # [11:35] * Joins: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se)
  1359. # [11:36] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1360. # [11:38] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1361. # [11:39] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  1362. # [11:41] * Quits: sicking (sicking@moz-7F871C5C.hsd1.ca.comcast.net) (Quit: sicking)
  1363. # [11:41] * Joins: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com)
  1364. # [11:42] * Quits: rniwa_ (rniwa@moz-E171DA5.sfba.hfc.comcastbusiness.net) (Quit: rniwa_)
  1365. # [11:44] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Client exited)
  1366. # [11:44] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1367. # [11:44] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1368. # [11:45] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Connection reset by peer)
  1369. # [11:49] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  1370. # [11:50] <NeilAway> ehsan: was bug 799640 comment #44 supposed to be a reply to me, because if so, it makes no sense :s
  1371. # [11:50] * Joins: FabioMagnoni (fabiomagno@926368C8.33C6581A.B65F468E.IP)
  1372. # [11:52] * Quits: martyn (martyn@moz-5E9CD98A.range86-165.btcentralplus.com) (Quit: Ex-Chat)
  1373. # [11:53] * Joins: gerv (Instantbir@moz-601CECF7.dab.02.net)
  1374. # [11:54] * Quits: mak (chatzilla@moz-147FD4E.retail.telecomitalia.it) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 2.0/20110318052756])
  1375. # [11:54] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Quit: tchevalier)
  1376. # [11:55] * Quits: pascalc (chatzilla@moz-446F98C8.fbxo.proxad.net) (Ping timeout)
  1377. # [11:55] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Quit: surkov)
  1378. # [11:56] * Joins: mak (chatzilla@moz-147FD4E.retail.telecomitalia.it)
  1379. # [11:57] * Quits: Ms2ger (Ms2ger@7E4330C7.5D52DA65.3773EA9F.IP) (Quit: bbl)
  1380. # [11:59] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  1381. # [12:00] * Quits: cjones (cjones@moz-45913895.socal.res.rr.com) (Quit: Leaving)
  1382. # [12:02] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1383. # [12:02] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Quit: Leaving.)
  1384. # [12:05] * Joins: Goldorak (chatzilla@7CD1B470.2BC633E3.88CF6591.IP)
  1385. # [12:06] * Quits: victorporof (victorporo@A9BBC05.B89616B1.79933D60.IP) (Ping timeout)
  1386. # [12:07] * Joins: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  1387. # [12:10] * Joins: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP)
  1388. # [12:10] * Quits: FabioMagnoni (fabiomagno@926368C8.33C6581A.B65F468E.IP) (Connection reset by peer)
  1389. # [12:10] * Joins: FabioMagnoni_ (fabiomagno@926368C8.33C6581A.B65F468E.IP)
  1390. # [12:11] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  1391. # [12:11] * Quits: nrc (nrc@4B76F2B0.D05BE748.613E47D1.IP) (Ping timeout)
  1392. # [12:12] <hsivonen> does someone happen to remember a chrome: URL that dereferences into text/html?
  1393. # [12:13] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Ping timeout)
  1394. # [12:14] * Quits: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net) (Input/output error)
  1395. # [12:15] * Joins: deLta30_ (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  1396. # [12:15] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1397. # [12:15] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1398. # [12:16] * Quits: gerv (Instantbir@moz-601CECF7.dab.02.net) (Ping timeout)
  1399. # [12:16] * Joins: jfkthame (jfkthame@35C5CD28.E5218CC8.9542EC20.IP)
  1400. # [12:16] * Quits: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Ping timeout)
  1401. # [12:17] <mcsmurf> hsivonen: chrome://global/content/license.html
  1402. # [12:17] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  1403. # [12:18] <mcsmurf> or chrome://global/content/buildconfig.html
  1404. # [12:18] * Joins: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  1405. # [12:21] <hsivonen> mcsmurf: thanks
  1406. # [12:25] * Quits: arky (arky@952421B7.53BA259D.FA662B63.IP) (Ping timeout)
  1407. # [12:26] * Quits: abot2211 (atopal@moz-19F3D8B3.net) (Ping timeout)
  1408. # [12:26] <sankha93> What does TEST-UNEXPECTED-PASS pass mean?
  1409. # [12:26] * Quits: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net) (Quit: Leaving.)
  1410. # [12:26] <sankha93> I thought only TEST-UNEXPECTED-FAIL existed..
  1411. # [12:27] <hsivonen> sankha93: something was marked as todo but passed anyway
  1412. # [12:27] <sankha93> hsivonen: ok. that makes sense now
  1413. # [12:29] * Joins: abot2211 (atopal@moz-19F3D8B3.net)
  1414. # [12:30] * Joins: gustavold (gustavold@9FF57A6A.27C9FAA1.6535E70B.IP)
  1415. # [12:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/22807dd4c16c - Joel Maher - Bug 820649 - disable 4 crashtests on Android so we can run C1 again. r=gbrown
  1416. # [12:31] * Joins: dbradley (dbradley@7AD66899.7A60A104.52E8B953.IP)
  1417. # [12:31] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1418. # [12:33] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1419. # [12:33] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1420. # [12:34] * Quits: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com) (Quit: BRB. Reloading my configuration. (Koala))
  1421. # [12:34] * Joins: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com)
  1422. # [12:35] * Quits: edmorley (edmorley@moz-5C2387B0.range109-156.btcentralplus.com) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  1423. # [12:35] * Joins: edmorley (edmorley@moz-5C2387B0.range109-156.btcentralplus.com)
  1424. # [12:36] <NeilAway> bah, why can't our plugin code handle a Flash update :s
  1425. # [12:38] <Archaeopteryx> could someone kickban rubi please?
  1426. # [12:38] * sheeri-afk is now known as sheeri
  1427. # [12:38] <Archaeopteryx> thanks
  1428. # [12:39] * Joins: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu)
  1429. # [12:39] <gfritzsche> NeilAway: it actually can now in 17 or 18 (picking up new plugins at runtime), no idea though if there is an adobe installer for that out already
  1430. # [12:39] <gfritzsche> *(picking up new duplicate if they are oop)
  1431. # [12:40] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1432. # [12:41] <gfritzsche> landed on 17 with bug 686335
  1433. # [12:42] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  1434. # [12:42] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  1435. # [12:42] * Joins: KaiRo (robert@moz-BC474452.adsl.highway.telekom.at)
  1436. # [12:43] * baku|away is now known as baku
  1437. # [12:44] * Joins: GinaYeh-laptop (GinaYeh@moz-93CE0515.dynamic.hinet.net)
  1438. # [12:46] <NeilAway> gfritzsche: well, it just locked up on me trying to load the old version
  1439. # [12:47] * Quits: deLta30_ (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1440. # [12:47] <gfritzsche> NeilAway: oh, ok... it *should* handle this now :/
  1441. # [12:49] * Quits: mbrubeck (mozilla@moz-45568FC0.hsd1.wa.comcast.net) (Quit: Leaving.)
  1442. # [12:49] * Quits: lerc (quassel@121-74-249-141.telstraclear.net) (Ping timeout)
  1443. # [12:49] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1444. # [12:51] * Joins: lerc (quassel@moz-B9B22400.telstraclear.net)
  1445. # [12:52] * Joins: jimm (jmathies@moz-7F164CA1.pn.at.cox.net)
  1446. # [12:53] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  1447. # [12:55] <gfritzsche> NeilAway: adobe background update i assume?
  1448. # [12:55] <gfritzsche> not an explicit update
  1449. # [12:55] <NeilAway> gfritzsche: well, I assume so too ;-)
  1450. # [12:58] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Quit: surkov)
  1451. # [12:59] * sheeri is now known as sheeri-afk
  1452. # [12:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0ad2485491af - Jacek Caban - Bug 819280 - Fixed some GCC warnings in accessible module r=trev.saunders
  1453. # [13:02] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1454. # [13:03] * Quits: bkero (bkero@moz-ED825A1B.members.linode.com) (Ping timeout)
  1455. # [13:04] * Joins: surkov (surkov@1D099191.75504D41.E17943EE.IP)
  1456. # [13:06] * Quits: ferjm (ferjm@53EF5629.3416E031.E21948B5.IP) (Quit: This computer has gone to sleep)
  1457. # [13:09] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1be998d20007 - Eric Chou - Bug 814341 - fix memory leak in Bluetooth, r=gyeh
  1458. # [13:09] * Quits: masayuki (Thunderbir@moz-66BDE38.ppp11.odn.ad.jp) (Ping timeout)
  1459. # [13:10] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1460. # [13:10] * Joins: vingtetun (vingtetun@moz-64E1A8DA.fbx.proxad.net)
  1461. # [13:10] * Joins: bkero (bkero@moz-ED825A1B.members.linode.com)
  1462. # [13:11] * Joins: masayuki (Thunderbir@moz-66BDE38.ppp11.odn.ad.jp)
  1463. # [13:11] * Joins: sankha931 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  1464. # [13:11] * Quits: vingtetun (vingtetun@moz-64E1A8DA.fbx.proxad.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.9.1.16/20110701103042])
  1465. # [13:11] * Quits: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Quit: Leaving.)
  1466. # [13:12] * Quits: masayuki (Thunderbir@moz-66BDE38.ppp11.odn.ad.jp) (Ping timeout)
  1467. # [13:13] * Joins: masayuki (Thunderbir@moz-66BDE38.ppp11.odn.ad.jp)
  1468. # [13:15] * Quits: Optimizer (Instantbir@9D88CC50.62837B7B.1807BA01.IP) (Connection reset by peer)
  1469. # [13:15] * Joins: Optimizer (Instantbir@D4A3BB78.9CB844E6.AA3EB577.IP)
  1470. # [13:15] * Quits: @ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP) (Input/output error)
  1471. # [13:17] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1472. # [13:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/36a3cac9e3d9 - Jan de Mooij - Bug 820816 - Refactor call object creation to not require a StackFrame. r=luke
  1473. # [13:21] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  1474. # [13:22] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e543e17b9824 - Ed Morley - Backout 4777ad9776ec (bug 820246) for causing frequent failures in background-image-zoom-1.html on Android
  1475. # [13:24] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1476. # [13:25] * Quits: sankha931 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Quit: Leaving.)
  1477. # [13:25] * Quits: surkov (surkov@1D099191.75504D41.E17943EE.IP) (Quit: surkov)
  1478. # [13:26] * Quits: GinaYeh-laptop (GinaYeh@moz-93CE0515.dynamic.hinet.net) (Input/output error)
  1479. # [13:26] * Joins: smaug (chatzilla@moz-78A86AC.pp.htv.fi)
  1480. # [13:26] * ChanServ sets mode: +o smaug
  1481. # [13:31] * sheeri-afk is now known as sheeri
  1482. # [13:31] * sheeri is now known as sheeri-flight
  1483. # [13:35] * Quits: @bz_sleep (bzbarsky@moz-C7E1A91E.bstnma.fios.verizon.net) (Ping timeout)
  1484. # [13:36] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  1485. # [13:37] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Quit: Too much information in my brain driving me insane)
  1486. # [13:41] * Quits: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr) (Connection reset by peer)
  1487. # [13:41] * Joins: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr)
  1488. # [13:42] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  1489. # [13:46] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1490. # [13:47] * Joins: ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP)
  1491. # [13:47] * ChanServ sets mode: +o ehsan
  1492. # [13:48] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Quit: Konversation terminated!)
  1493. # [13:49] * Quits: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr) (Ping timeout)
  1494. # [13:50] <firebot> Check-in:
  1495. # [13:50] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/93beff102db2 - Ed Morley - Bug 752243 - Disable test_service_wipeServer.js, test_service_createAccount.js, test_service_changePassword.js, test_aitc_server.js, test_aitc_client.js &
  1496. # [13:50] <firebot> test_hashcompleter.js on OS X & Linux for too many intermittent failures
  1497. # [13:50] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1498. # [13:50] <edmorley> and good riddance to them :-)
  1499. # [13:52] * Quits: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu) (Ping timeout)
  1500. # [13:53] * Joins: sewardj (sewardj@moz-DC2051D3.dip.t-dialin.net)
  1501. # [13:55] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1502. # [13:55] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  1503. # [13:56] * Joins: josh (josh@moz-5D371A2.adsl2.static.versatel.nl)
  1504. # [13:56] * sheeri-flight is now known as sheeri-afk
  1505. # [13:59] * Joins: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr)
  1506. # [14:00] * Joins: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu)
  1507. # [14:02] * Quits: peterv (peterv@moz-9067AD6A.access.telenet.be) (Ping timeout)
  1508. # [14:03] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  1509. # [14:03] * Quits: hub (hub@66BD7990.B75F6E78.41EED93B.IP) (Ping timeout)
  1510. # [14:04] * Joins: ferjm (ferjm@53EF5629.3416E031.E21948B5.IP)
  1511. # [14:05] * Joins: peterv (peterv@moz-9067AD6A.access.telenet.be)
  1512. # [14:05] * Joins: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se)
  1513. # [14:05] * Quits: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr) (Ping timeout)
  1514. # [14:07] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1515. # [14:07] * Quits: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se) (Ping timeout)
  1516. # [14:09] * Joins: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr)
  1517. # [14:12] * Joins: sheppy (sheppy@moz-B52B0B26.dhcp.kgpt.tn.charter.com)
  1518. # [14:12] * Quits: Optimizer (Instantbir@D4A3BB78.9CB844E6.AA3EB577.IP) (Ping timeout)
  1519. # [14:12] * Fallen|away is now known as Fallen
  1520. # [14:12] * Quits: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP) (Quit: victorporof)
  1521. # [14:13] <mak> wow, so many
  1522. # [14:13] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  1523. # [14:16] * Joins: berkerpeksag (berkerpeks@BF6A19FC.C9C3B73E.6E2B3F2F.IP)
  1524. # [14:20] * Joins: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net)
  1525. # [14:22] * Joins: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP)
  1526. # [14:23] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1527. # [14:25] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  1528. # [14:25] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1529. # [14:26] * Quits: glazou (glazou@moz-204094DD.disruptive-innovations.fr) (Quit: bbl)
  1530. # [14:26] <sankha93> !seen tbsaunde
  1531. # [14:26] <firebot> tbsaunde was last seen 6 hours, 37 minutes and 48 seconds ago, saying 'err, load' in #accessibility.
  1532. # [14:27] <tbsaunde> sankha93: hi
  1533. # [14:27] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5aed5087fb7b - Trevor Saunders - bug 798567 - convert css values to webidl r=bz
  1534. # [14:28] <sankha93> tbsaunde: what is bug 820672 about?
  1535. # [14:28] * Joins: avih (quassel@moz-4D7D2F38.red.bezeqint.net)
  1536. # [14:29] <tbsaunde> sankha93: so, nsCOMArray has a function Sort() that takes as an argument int (*compareFunc)(T*, T*, void*) right?
  1537. # [14:29] <sankha93> yes.
  1538. # [14:30] <tbsaunde> nsTArray only has ones that use operator < and a class that defines a compare function and an equals function
  1539. # [14:30] <tbsaunde> it would be nice to add one like nsCOMArray has to nsTArray
  1540. # [14:31] <sankha93> ok. so that should go in nstarray_base?
  1541. # [14:31] * Quits: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net) (Quit: jib)
  1542. # [14:31] <sankha93> *nsTArray_base
  1543. # [14:31] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1544. # [14:32] <tbsaunde> sankha93: let me look
  1545. # [14:32] * coop|afk is now known as coop
  1546. # [14:35] <tbsaunde> sankha93: that seems reasonable
  1547. # [14:35] * Joins: Edgar (Thunderbir@moz-B998B502.dynamic.hinet.net)
  1548. # [14:36] <sankha93> tbsaunde: hmm.. but then what is the array onwhich we should run sort?
  1549. # [14:36] * Joins: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP)
  1550. # [14:36] <sankha93> i don't see any mArray like variable in nsTArray.h
  1551. # [14:36] * Quits: Edgar (Thunderbir@moz-B998B502.dynamic.hinet.net) (Quit: Edgar)
  1552. # [14:36] <sankha93> it was there in nsCOMArray.h
  1553. # [14:38] <tbsaunde> sankha93: nsTArray doesn't store things the same way, just invoke NS_QuickSort() like the existing Sort() methods do
  1554. # [14:38] * Joins: joey-away (chatzilla@moz-EFCB4CBF.princetowncable.com)
  1555. # [14:38] * joey-away is now known as joey
  1556. # [14:40] * jmaher|afk is now known as jmaher
  1557. # [14:41] <sankha93> tbsaunde: but isn't something similar being done in https://mxr.mozilla.org/mozilla-central/source/xpcom/glue/nsTArray.h#1135?
  1558. # [14:41] * Quits: joey (chatzilla@moz-EFCB4CBF.princetowncable.com) (Quit: ChatZilla 0.9.89 [Firefox 19.0a2/20121210042017])
  1559. # [14:41] * Joins: joey (chatzilla@moz-EFCB4CBF.princetowncable.com)
  1560. # [14:44] * Quits: mwargers (chatzilla@moz-E31CD2CB.mozilla.org) (Ping timeout)
  1561. # [14:44] <tbsaunde> sankha93: yes, its very similar to what you should add
  1562. # [14:45] <sankha93> tbsaunde: i would like take this on
  1563. # [14:45] <tbsaunde> but it expects the argument is a class with a method Compare() not just a raw function pointer
  1564. # [14:45] <tbsaunde> sankha93: please :)
  1565. # [14:46] * Quits: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr) (Connection reset by peer)
  1566. # [14:46] <sankha93> tbsaunde: hmm. yeah! instead of the class's method, we'll just call the function directly right?
  1567. # [14:46] * Joins: randix (rdow@45355E35.CFBC10F9.8B52D585.IP)
  1568. # [14:46] * Quits: RealRaven (Thunderbir@83174943.9F09AD81.C3498625.IP) (Ping timeout)
  1569. # [14:46] <tbsaunde> sankha93: yes
  1570. # [14:47] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  1571. # [14:48] * Joins: phx (Adium@1E6E698A.3591AA85.689607DE.IP)
  1572. # [14:48] * Joins: yzen (Adium@EA83C0CE.A6295926.9D42CF23.IP)
  1573. # [14:49] <mcsmurf> is the object.functionCall(...).then(onSuccess, onError) syntax a standard JS feature?
  1574. # [14:50] * ewong|sleep is now known as ewong
  1575. # [14:50] * Joins: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr)
  1576. # [14:50] * Joins: yzen1 (Adium@67828CC7.C1A51174.9D42CF23.IP)
  1577. # [14:50] <yzen1> mcsmurf: looks like you are talking about a promise, it is not standard, no
  1578. # [14:50] * Quits: yzen (Adium@EA83C0CE.A6295926.9D42CF23.IP) (Ping timeout)
  1579. # [14:50] * yzen1 is now known as yzen
  1580. # [14:50] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1581. # [14:51] * Joins: RealRaven (Thunderbir@D219CF1E.7F246BAB.C3498625.IP)
  1582. # [14:51] <mcsmurf> ok, I dont know what it's called, I'll look that up then :)
  1583. # [14:51] <@ted> promises are a concept that's been around for a while
  1584. # [14:51] <@ted> but implementations vary
  1585. # [14:51] <@ted> yoric did one for his OS.File work, AIUI
  1586. # [14:51] * Joins: krishnasurfeasy (krishnasur@moz-7BFF253D.cpe.net.cable.rogers.com)
  1587. # [14:52] * Joins: glazou (glazou@moz-204094DD.disruptive-innovations.fr)
  1588. # [14:54] * Joins: pascalc (chatzilla@moz-F8747CC6.dsl.ovh.fr)
  1589. # [14:54] * Joins: ahal (ahal@F2D29657.F60B0462.67AC9B1.IP)
  1590. # [14:54] * Quits: sheppy (sheppy@moz-B52B0B26.dhcp.kgpt.tn.charter.com) (Ping timeout)
  1591. # [14:54] * Parts: krishnasurfeasy (krishnasur@moz-7BFF253D.cpe.net.cable.rogers.com)
  1592. # [14:54] * Fallen is now known as Fallen|away
  1593. # [14:55] * Joins: kaze (kaze@moz-F8747CC6.dsl.ovh.fr)
  1594. # [14:56] <Yoric> ted: We finally got a "standardized" implementation of promises on m-c.
  1595. # [14:56] <Yoric> joe_walker, me and gozala finally agreed on a single version (which is basically gozala's).
  1596. # [14:58] * Quits: @ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP) (Input/output error)
  1597. # [15:00] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  1598. # [15:00] * Joins: lduros (user@moz-BED1C6A5.c3-0.rdl-ubr1.trpr-rdl.pa.cable.rcn.com)
  1599. # [15:00] * Joins: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net)
  1600. # [15:01] * Joins: sheppy (sheppy@moz-B52B0B26.dhcp.kgpt.tn.charter.com)
  1601. # [15:01] <NeilAway> gfritzsche: thanks for the stack, I'd stupidly forgotten to save mine :s
  1602. # [15:02] * Quits: tonymec (tonymec@B1C68DDA.7DC08933.DE2DB281.IP) (Input/output error)
  1603. # [15:02] <@ted> Yoric: very cool
  1604. # [15:04] * Joins: armenzg (armenzg@moz-ED3249A4.dmz.releng.scl3.mozilla.com)
  1605. # [15:06] * Joins: tonymec (tonymec@B1C68DDA.7DC08933.DE2DB281.IP)
  1606. # [15:06] <@ted> Yoric: i was curious as to whether TC39 had talked about this
  1607. # [15:06] <@ted> looks like there are a couple of strawman proposals on the wiki
  1608. # [15:06] <edmorley> ircop please kickban Guest23655
  1609. # [15:06] <Yoric> Yes, we went for Promise/A, iirc.
  1610. # [15:08] * rail_away is now known as rail
  1611. # [15:10] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1612. # [15:10] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  1613. # [15:10] * Quits: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com) (Ping timeout)
  1614. # [15:10] * Quits: sheppy (sheppy@moz-B52B0B26.dhcp.kgpt.tn.charter.com) (Quit: Leaving)
  1615. # [15:11] * Joins: adev (adev@moz-D173B4EB.ictp.it)
  1616. # [15:11] * Joins: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net)
  1617. # [15:11] * ewong is now known as ewong|sleep
  1618. # [15:12] * Joins: overholt (overholt@F2D29657.F60B0462.67AC9B1.IP)
  1619. # [15:12] * Joins: vicamo (vicamo@moz-166E187D.dynamic.hinet.net)
  1620. # [15:12] <gfritzsche> NeilAway: np, easy enough to repro as it turns out :)
  1621. # [15:13] <tbsaunde> is there any reason we keep nsISupportsIterators.idl in the tree? it seems to be completely unused, nobody even implements any of it acording to grep
  1622. # [15:13] * Quits: nhirata (anonymous@moz-6D599AA6.hsd1.ca.comcast.net) (Quit: nhirata)
  1623. # [15:14] * catlee-away is now known as catlee
  1624. # [15:16] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/744b40b75241 - Josh Aas - Bug 807678: Don't proliferate NSPR DNS types beyond the host resolver itself. Make it possible to easily hook up other host resolvers. r=sworkman
  1625. # [15:16] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  1626. # [15:17] <jimm> edmorley: ping
  1627. # [15:17] <edmorley> jimm: hi :-)
  1628. # [15:18] <jimm> edmorley: hey. apparently we have some leaks disabled for mochitest-1 & 3 for linux and mac on mc and inbound which look like this - https://tbpl.mozilla.org/php/getParsedLog.php?id=17884571&tree=Elm
  1629. # [15:18] <jimm> edmorley: curious if you know the bug number where we disabled those? I'd like to do the same on elm.
  1630. # [15:18] <edmorley> jimm: ah yes
  1631. # [15:19] * Joins: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP)
  1632. # [15:19] <edmorley> jimm: they are hidden, rather than disabled, I'll hid on elm for you now
  1633. # [15:19] <jimm> awesome!
  1634. # [15:19] <edmorley> hide, even
  1635. # [15:19] <jimm> thx
  1636. # [15:20] * Quits: tonymec (tonymec@B1C68DDA.7DC08933.DE2DB281.IP) (Ping timeout)
  1637. # [15:21] <edmorley> jimm: done
  1638. # [15:21] * Joins: tonymec (tonymec@B1C68DDA.7DC08933.DE2DB281.IP)
  1639. # [15:22] * Quits: adev (adev@moz-D173B4EB.ictp.it) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  1640. # [15:22] <edmorley> jimm: the leaks are caused by tests not liking the fact that java isn't installed on the OS X slaves (bug 705570, which depends on bug 790206, which needs releng spare cycles)
  1641. # [15:22] <edmorley> s/OS X slaves/OS X 10.7 and 10.8/
  1642. # [15:22] <jimm> edmorley: I like those kinds of fixes. :)
  1643. # [15:22] * Quits: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP) (Quit: Boriss)
  1644. # [15:23] <edmorley> jimm: ideally we'd fix the tests, but the test author doesn't have any cycles either
  1645. # [15:23] * AutomatedTester|AFK is now known as AutomatedTester
  1646. # [15:24] <edmorley> and there concludes the reason why we;ve been wasting ~3 hours of machine time per push on all trees for the last year, on tests that are hidden
  1647. # [15:24] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/097b8aa46e57 - Andrew Halberstadt - Bug 821285 - Disable toolkit/devtools/debugger/tests/unit/test_dbgsocket.js for B2G, r=bustage
  1648. # [15:24] * Joins: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP)
  1649. # [15:25] <edmorley> jimm: the win mochitest-other leak on https://tbpl.mozilla.org/?rev=c18d86e4c5a0&tree=Elm is intermittent bug 690604 btw
  1650. # [15:25] * Quits: ferjm (ferjm@53EF5629.3416E031.E21948B5.IP) (Quit: Leaving)
  1651. # [15:25] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1652. # [15:26] <edmorley> jimm: you'll need to refresh TBPL to pick up the hidden results update btw
  1653. # [15:26] <jimm> thanks, tagged that one.
  1654. # [15:26] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  1655. # [15:26] <jimm> edmorley: ever seen -
  1656. # [15:26] <jimm> ERROR TEST-UNEXPECTED-FAIL | /tests/content/media/test/test_streams_element_capture_createObjectURL.html | 320x240.ogv checking readyState - got 4, expected 2
  1657. # [15:27] * Joins: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP)
  1658. # [15:27] <jimm> osx 10.7 mochitest-1
  1659. # [15:27] <jimm> don't see anything in bugzilla on it.
  1660. # [15:27] <edmorley> jimm: seems similar to bug 750258, perhaps just a new variant of it?
  1661. # [15:28] * Joins: vingtetun (vingtetun@moz-64E1A8DA.fbx.proxad.net)
  1662. # [15:28] <@bsmedberg> bc: can you retest bug 814021?
  1663. # [15:29] <jimm> edmorley: might be, it's new on elm. will keep an eye on it. thx
  1664. # [15:29] <edmorley> jimm: np
  1665. # [15:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/25c589434eae - Neil Deakin - Bug 817731, nsAsyncMessageToParent::Run doesn't check if element exists in mASyncMessages, r=smaug
  1666. # [15:31] * Joins: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se)
  1667. # [15:31] <jimm> bsmedberg: ping
  1668. # [15:31] <@bsmedberg> jimm: pong
  1669. # [15:32] * Quits: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se) (Ping timeout)
  1670. # [15:32] <jimm> bsmedberg: hey, debugging something on elm, it looks like we don't expose the app directory to content processes. but we have tests in dom that rely on certain about handlers defined in browsercomps.
  1671. # [15:33] <@bsmedberg> jimm: e10s is back on?
  1672. # [15:33] <@bsmedberg> but... we should have the app directory in content processes
  1673. # [15:33] <@bsmedberg> I think...
  1674. # [15:33] <jimm> well we have tests that use it in dom on mac and linux - https://tbpl.mozilla.org/php/getParsedLog.php?id=17889144&tree=Elm
  1675. # [15:34] * Joins: victorporof_ (victorporo@87CAE4F1.BEB908B0.79933D60.IP)
  1676. # [15:34] <jimm> those rely on the about:certerror handler
  1677. # [15:34] * Quits: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  1678. # [15:35] * Quits: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP) (Ping timeout)
  1679. # [15:35] * Joins: Optimizer (Optimizer@4DD49C0D.570A1A4F.D5D59AD9.IP)
  1680. # [15:35] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1681. # [15:36] <jimm> bsmedberg: i'll look at passing the app location, just wanted to run it past you first.
  1682. # [15:37] * Joins: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP)
  1683. # [15:37] <@bsmedberg> jimm: how are app components registered in the content process if it doesn't know the app location?
  1684. # [15:37] * bwinton_away is now known as bwinton
  1685. # [15:37] <@bsmedberg> jimm: or is this the "one level up from the app location" directory?
  1686. # [15:38] * Quits: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP) (Connection reset by peer)
  1687. # [15:38] * Quits: victorporof_ (victorporo@87CAE4F1.BEB908B0.79933D60.IP) (Ping timeout)
  1688. # [15:38] * Joins: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP)
  1689. # [15:38] <jimm> well, when the component manager inits in the content process, it assumes the app dir is the same as the gre dir. on mc, this is ok, but on elm, it doesn't find anything app related.
  1690. # [15:39] * jcranmer|away is now known as jcranmer
  1691. # [15:39] <jimm> bsmedberg: http://mxr.mozilla.org/mozilla-central/source/xpcom/components/nsComponentManager.cpp#315
  1692. # [15:39] * Joins: espindola (espindola@moz-85711076.dsl.teksavvy.com)
  1693. # [15:40] <jimm> this might tie in with the issue with NS_XPCOM_CURRENT_PROCESS_DIR pointing to the wrong place on elm
  1694. # [15:40] <@bsmedberg> what "wrong place"?
  1695. # [15:40] <@bsmedberg> it seems obviously wrong for the appdir to not be correct
  1696. # [15:40] * sheeri-afk is now known as sheeri
  1697. # [15:40] <jimm> in the content process NS_XPCOM_CURRENT_PROCESS_DIR points to gre
  1698. # [15:41] <@bsmedberg> but why?
  1699. # [15:41] <jimm> bsmedberg: http://mxr.mozilla.org/mozilla-central/source/toolkit/xre/nsXREDirProvider.h#75
  1700. # [15:42] <jimm> mXULAppDir isn't defined or has the wrong path
  1701. # [15:42] <@bsmedberg> that sounds like your bug, then
  1702. # [15:42] <jimm> so we get the gre path
  1703. # [15:42] <@bsmedberg> unless we really don't want app components in the content process
  1704. # [15:42] * Joins: milan (milan@F2D29657.F60B0462.67AC9B1.IP)
  1705. # [15:42] <@bsmedberg> which may be what we decided last time
  1706. # [15:42] * Joins: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  1707. # [15:43] <jimm> ah so that is why I was asking first, do we?
  1708. # [15:43] <jimm> if so those tests make bad assumptions
  1709. # [15:43] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1710. # [15:43] <@bsmedberg> Well... in general app components might not be prepared to run in a content process.
  1711. # [15:43] * Joins: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP)
  1712. # [15:43] <@bsmedberg> jimm: is the test incorrect? What is it testing?
  1713. # [15:44] * Quits: GPHemsley (GPHemsley@moz-F93E11DA.hsd1.ga.comcast.net) (Ping timeout)
  1714. # [15:44] <jimm> it assumes there is an about handler for certerror
  1715. # [15:44] * Joins: GPHemsley (GPHemsley@moz-F93E11DA.hsd1.ga.comcast.net)
  1716. # [15:45] * Joins: espindola_ (espindola@moz-85711076.dsl.teksavvy.com)
  1717. # [15:45] * whimboo is now known as whimboo|brb
  1718. # [15:46] * Quits: espindola (espindola@moz-85711076.dsl.teksavvy.com) (Client exited)
  1719. # [15:46] <jimm> bsmedberg: http://mxr.mozilla.org/mozilla-central/source/dom/browser-element/mochitest/browserElement_ErrorSecurity.js
  1720. # [15:46] * espindola_ is now known as espindola
  1721. # [15:46] <mjrosenb> sewardj: ping?
  1722. # [15:46] <jimm> there might be more issues with tests after that one
  1723. # [15:46] <sewardj> mjrosenb: pong
  1724. # [15:46] * Joins: ekr (ekr@moz-E43B1A40.lax.megapath.net)
  1725. # [15:46] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1726. # [15:46] <@bsmedberg> jimm: that looks like a test for the B2G iframe mozbrowser="true" element
  1727. # [15:47] <@bsmedberg> which is irrelevant to anyone other than B2G, I would think
  1728. # [15:47] <jimm> let me find the bug
  1729. # [15:47] * edmorley is now known as SHERIFF-9000
  1730. # [15:47] <@bsmedberg> and I'm pretty sure is also only relevant in a toplevel process
  1731. # [15:48] <jimm> 768842
  1732. # [15:48] <mjrosenb> sewardj: I got this last night while running on arm/linux, njn said you were the person to talk to: http://pastebin.mozilla.org/1992542
  1733. # [15:48] <sankha93> tbsaunde: the patch is up! :)
  1734. # [15:48] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  1735. # [15:48] * Quits: vingtetun (vingtetun@moz-64E1A8DA.fbx.proxad.net) (Ping timeout)
  1736. # [15:49] * Quits: Optimizer (Optimizer@4DD49C0D.570A1A4F.D5D59AD9.IP) (Ping timeout)
  1737. # [15:49] * SHERIFF-9000 is now known as edmorley
  1738. # [15:49] <sewardj> mjrosenb: wow. that's wierd. let me have a look.
  1739. # [15:51] <mjrosenb> sewardj: I cn give you a copy of the executable if you want.
  1740. # [15:51] <sewardj> mjrosenb: ah. I think that's a bug in V. But you might be able to work around it by getting rid of --smc-check=all
  1741. # [15:51] <sewardj> mjrosenb: since that's irrelevant on arm
  1742. # [15:51] <sewardj> mjrosenb: can you try that, as a quick sanity check?
  1743. # [15:52] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  1744. # [15:53] * Joins: Optimizer (Optimizer@B1B692E9.5A60128E.BE90E62C.IP)
  1745. # [15:54] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  1746. # [15:54] * Quits: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP) (Quit: Boriss)
  1747. # [15:54] * armenzg is now known as armenzg_brb
  1748. # [15:55] <Yoric> I have written a small web game and it looks much smoother with Firefox 17 than with Aurora, on both MacOS and Android.
  1749. # [15:55] <Yoric> Is there something fishy cooking?
  1750. # [15:56] * Joins: mbrubeck (mozilla@moz-45568FC0.hsd1.wa.comcast.net)
  1751. # [15:57] * Quits: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP) (Quit: victorporof)
  1752. # [15:57] <firebot> Check-in:
  1753. # [15:57] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ab30da702673 - Panos Astithas - Make the simple leaktest run first and give it ample time to make sure GC from previous tests does not cause debugger tests to fail (bug 774619); r=vporof
  1754. # [15:59] * Joins: TheOne (one@moz-B0E77D54.dip.t-dialin.net)
  1755. # [15:59] * Quits: TheOne (one@moz-B0E77D54.dip.t-dialin.net) (Input/output error)
  1756. # [15:59] * Joins: TheOne (one@moz-B0E77D54.dip.t-dialin.net)
  1757. # [16:00] <jimm> bsmedberg: odd, those tests don't run on android according to the logs, but bugs associated with both are b2g specific
  1758. # [16:00] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  1759. # [16:01] * Joins: RudyL (rudy@moz-F6582B7D.dynamic.hinet.net)
  1760. # [16:02] * Joins: smagnin (pike@moz-8CEB8724.fbx.proxad.net)
  1761. # [16:02] * Joins: Pike (Pike@moz-2790AB6B.pool.mediaways.net)
  1762. # [16:03] * jhopkins|afk is now known as jhopkins|buildduty
  1763. # [16:03] <jimm> don't appear to run on B2G Arm opt either
  1764. # [16:03] * Joins: mdas (mdas@F2D29657.F60B0462.67AC9B1.IP)
  1765. # [16:03] * Joins: beaufour (beaufour@moz-DC1D9B4C.nycmny.fios.verizon.net)
  1766. # [16:04] * Joins: josh_ (josh@A5A0595A.66715431.D25A875A.IP)
  1767. # [16:04] <sewardj> mjrosenb: http://pastebin.mozilla.org/1992613 fixes it
  1768. # [16:05] <sewardj> mjrosenb: the origin tracking instrumentation code was being confused by the self-checks put in by --smc-check=all
  1769. # [16:05] * Quits: josh (josh@moz-5D371A2.adsl2.static.versatel.nl) (Ping timeout)
  1770. # [16:05] * josh_ is now known as josh
  1771. # [16:06] * Quits: ekr (ekr@moz-E43B1A40.lax.megapath.net) (Quit: ekr)
  1772. # [16:06] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  1773. # [16:06] * Joins: JeroenDeDauw (j@moz-8863EB11.dip.t-dialin.net)
  1774. # [16:07] * Joins: mdas_ (mdas@F2D29657.F60B0462.67AC9B1.IP)
  1775. # [16:08] * Quits: mdas (mdas@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  1776. # [16:09] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1777. # [16:09] * mdas_ is now known as mdas
  1778. # [16:10] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1779. # [16:10] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Quit: Mardak)
  1780. # [16:12] <mjrosenb> sewardj: ahh, yes. getting rid of --smc-check=all got rid of it. I'll try your patch now.
  1781. # [16:13] * Joins: hipokrit (hipokrit@1BF5DFDB.CA40E1F7.C558AD24.IP)
  1782. # [16:14] * armenzg_brb is now known as armenzg
  1783. # [16:15] * Joins: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP)
  1784. # [16:16] * Joins: ekr (ekr@moz-E43B1A40.lax.megapath.net)
  1785. # [16:18] * Joins: ehugg (chatzilla@CE3BE0DD.29102B70.6CD50604.IP)
  1786. # [16:19] * Joins: Cwiiis (cwiiis@moz-125BA310.croy.cable.virginmedia.com)
  1787. # [16:21] * Quits: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr) (Connection reset by peer)
  1788. # [16:23] * Joins: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr)
  1789. # [16:23] * Quits: Cwiiis (cwiiis@moz-125BA310.croy.cable.virginmedia.com) (Quit: Leaving)
  1790. # [16:25] * mjschranz is now known as mjschranz_brb
  1791. # [16:25] * joey is now known as joey-away
  1792. # [16:26] <sewardj> mjrosenb: committed as trunk r13177
  1793. # [16:26] * Joins: sheppy (sheppy@moz-B52B0B26.dhcp.kgpt.tn.charter.com)
  1794. # [16:26] * Quits: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  1795. # [16:27] <mjrosenb> sewardj: I noticed
  1796. # [16:28] <mjrosenb> patch said it was already applied, so I svn log'ed it
  1797. # [16:28] * Quits: Optimizer (Optimizer@B1B692E9.5A60128E.BE90E62C.IP) (Ping timeout)
  1798. # [16:29] * armenzg is now known as armenzg_mtg
  1799. # [16:29] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  1800. # [16:30] * Joins: Waldo (waldo@moz-7E986AF1.lodgenet.net)
  1801. # [16:31] * Joins: Optimizer (Optimizer@B0463667.7E183FDB.D5D59AD9.IP)
  1802. # [16:32] * whimboo|brb is now known as whimboo
  1803. # [16:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/950611b8b91c - Bas Schouten - Bug 814952 - Test: Add a reftest for non-scaled stroke. r=jrmuizel
  1804. # [16:32] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fa72584497cb - Bas Schouten - Bug 814952: Further cleanup state management surrounding paths and pathbuilders. r=joedrew
  1805. # [16:33] * Joins: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP)
  1806. # [16:33] * Joins: till (till@moz-4B94BBA8.web.vodafone.de)
  1807. # [16:34] * Joins: coyotebush (corey@moz-2D845411.hsd1.ca.comcast.net)
  1808. # [16:36] * joey-away is now known as joey
  1809. # [16:36] * Joins: vingtetun (vingtetun@moz-F8747CC6.dsl.ovh.fr)
  1810. # [16:36] * Quits: jfkthame (jfkthame@35C5CD28.E5218CC8.9542EC20.IP) (Quit: jfkthame)
  1811. # [16:38] * Joins: jorendorff (jorendorff@moz-E54E06EF.hsd1.tn.comcast.net)
  1812. # [16:39] * Joins: ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP)
  1813. # [16:39] * ChanServ sets mode: +o ehsan
  1814. # [16:39] * Joins: jlin (Jonathan@moz-619C4F64.x.rootbsd.net)
  1815. # [16:39] * Quits: ircloggr (nodebot@moz-A7239FE3.compute-1.amazonaws.com) (Client exited)
  1816. # [16:40] * Joins: ircloggr (nodebot@moz-C9A0A250.compute-1.amazonaws.com)
  1817. # [16:41] * Quits: jorendorff (jorendorff@moz-E54E06EF.hsd1.tn.comcast.net) (Quit: Eaten by grue.)
  1818. # [16:45] <jlebar> When I do elem.style.backgroundImage = 'url(...)'; where is that string stored?
  1819. # [16:45] <Waldo> is the string actually stored? I'd doubt it
  1820. # [16:46] * mjschranz_brb is now known as mjschranz
  1821. # [16:47] * Quits: espindola (espindola@moz-85711076.dsl.teksavvy.com) (Quit: Ex-Chat)
  1822. # [16:47] <Callek> Waldo: what does .getComputedStyle return?
  1823. # [16:48] <jlebar> Waldo: It is stored; I can tell you the stack in the CSS parser where it's allocated. :)
  1824. # [16:48] <Waldo> Callek: something that's computed, since I believe there are some spec requirements on formatting
  1825. # [16:48] * Quits: nmatsakis (nmatsakis@AAE222A3.FDDA6739.2321E71E.IP) (Quit: Computer has gone to sleep.)
  1826. # [16:48] <Waldo> jlebar: interesting
  1827. # [16:48] * Joins: jdm (jdm@DB05BBF2.BB1F48F2.971E19F6.IP)
  1828. # [16:49] <glandium> jlebar: want me to a? you? ;)
  1829. # [16:49] <jlebar> glandium: a=me; go for it. Do you want me to mark the bugs?
  1830. # [16:49] * Parts: jandem (jandem@17CAA509.3FFC9B2.198A214C.IP)
  1831. # [16:49] <glandium> jlebar: might be better :)
  1832. # [16:49] * Joins: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se)
  1833. # [16:53] * Quits: berkerpeksag (berkerpeks@BF6A19FC.C9C3B73E.6E2B3F2F.IP) (Quit: WeeChat 0.3.7)
  1834. # [16:53] * Quits: josh (josh@A5A0595A.66715431.D25A875A.IP) (Quit: josh)
  1835. # [16:53] * jwir3|away is now known as jwir3
  1836. # [16:54] <jlebar> Well, that was fun.
  1837. # [16:54] * Joins: Mardak (Mardak@2557E599.66715431.D25A875A.IP)
  1838. # [16:55] * Joins: josh (josh@moz-5D371A2.adsl2.static.versatel.nl)
  1839. # [16:56] <Optimizer> some help with "building after long time" issues ?
  1840. # [16:56] * overholt is now known as overholt|afk
  1841. # [16:57] <Optimizer> I am getting this last few lines before my build fails and stops prematurely http://pastebin.mozilla.org/1992666
  1842. # [16:57] * Quits: josh (josh@moz-5D371A2.adsl2.static.versatel.nl) (Ping timeout)
  1843. # [16:58] * glazou has a strong migraine
  1844. # [16:58] <jlebar> Optimizer: Are you sure those are the only errors you're seeing?
  1845. # [16:59] <jlebar> Optimizer: I'd guess that you're running with -j8 and there are some errors above you're missing.
  1846. # [16:59] <Optimizer> let me check
  1847. # [16:59] <jlebar> Optimizer: You can use various bash tricks to capture stdout + stderr, or to highlight stderr
  1848. # [16:59] <jlebar> Optimizer: e.g. https://github.com/jlebar/conf/blob/master/bin/rse
  1849. # [17:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1cc19f36ee66 - Ed Morley - Merge last PGO-green changeset of mozilla-inbound to mozilla-central
  1850. # [17:00] * Joins: aleth (aleth@moz-CDF69D58.ictp.it)
  1851. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fd919eb97465 - Bellindira Castillo [:bellindira] - Bug 806725 - Port test_localStorageBasePrivateBrowsing.html to the new per-tab PB APIs; r=ehsan
  1852. # [17:00] <Optimizer> jlebar: this is all I can see http://pastebin.mozilla.org/1992673
  1853. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/edd45de440ba - Jason Smith - Bug 818466 - Enable basic automated WebRTC gUM tests on Android. r=jesup
  1854. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/352bd17710c8 - Andrew Halberstadt - Bug 817122 - Disable failing B2G xpcshell tests, enable debugger tests, r=mdas, DONTBUILD a=NPOTB,test-only
  1855. # [17:00] * glazou goes into a dark room, the kind of room with no noise and a bed, and pile of paracetamol pills, bye guys
  1856. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/392421b0c470 - Ed Morley - Merge mozilla-central to mozilla-inbound
  1857. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9db79b97abbb - Ed Morley - Merge last PGO-green changeset of mozilla-inbound to mozilla-central
  1858. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/718145f0d606 - Olli Pettay - Bug 806031, less surprising toString for XBL binding objects, r=bz
  1859. # [17:00] <jlebar> Optimizer: Well, that doesn't really preclude some error hanging out.
  1860. # [17:00] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1861. # [17:00] * Parts: aleth (aleth@moz-CDF69D58.ictp.it)
  1862. # [17:00] * Quits: glazou (glazou@moz-204094DD.disruptive-innovations.fr) (Quit: maybe bbl)
  1863. # [17:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1c24a90750bf - Mario Alvarado [:marioalv] - Bug 806732 - Port test_bug627234.js to the new per-tab PB APIs; r=ehsan
  1864. # [17:01] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/aed7413b2efc - Ben Hearsum - bug 812833: Set up nightly multilocale B2G unagi builds for dev testing - set gecko l10n root in gecko configs. r=catlee. NPOTB so DONTBUILD
  1865. # [17:01] <jlebar> Optimizer: If it was me, I'd try again and either use that rse tool, or capture stdin and stdout into a file.
  1866. # [17:01] <jlebar> Optimizer: or build with -j1
  1867. # [17:01] <Optimizer> how are you sure its -jN related issues ?
  1868. # [17:01] <Optimizer> also, will that run on windows ?
  1869. # [17:01] <Optimizer> (the github link)
  1870. # [17:02] <jlebar> Optimizer: Not positive, but I don't think anyone else is going to suggest a different solution.
  1871. # [17:02] * Quits: dao (dao@moz-DE32E385.superkabel.de) (Connection reset by peer)
  1872. # [17:02] <jlebar> Optimizer: It might run in mozillabuild. I haven't tried it; I don't know.
  1873. # [17:02] <Optimizer> so I put that in .py file and run it ?
  1874. # [17:02] <glandium> Optimizer: there's not enough context in your paste
  1875. # [17:02] * Joins: MisfitGeek (MisfitGeek@moz-BD3E98A8.hsd1.nh.comcast.net)
  1876. # [17:02] <jlebar> Optimizer: yes.
  1877. # [17:02] <glandium> that is, the actual error doesn't show up in your log
  1878. # [17:03] <Optimizer> glandium: buffer allows only that much
  1879. # [17:03] <Optimizer> I can redirect everything to a file next time
  1880. # [17:03] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  1881. # [17:03] <Optimizer> I did not know that it was gonna fail .
  1882. # [17:03] * Joins: Cwiiis (cwiiis@moz-125BA310.croy.cable.virginmedia.com)
  1883. # [17:03] * kk1fff is now known as kk1fff|home
  1884. # [17:04] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  1885. # [17:04] * Joins: atte (atte@moz-401E92F1.dhcp.inet.fi)
  1886. # [17:04] * Quits: mcsmurf (me@moz-57CF4D5F.dip.t-dialin.net) (Quit: )
  1887. # [17:04] <Optimizer> jlebar: how to use it ?
  1888. # [17:04] <jlebar> Optimizer: rse make
  1889. # [17:04] * coop is now known as coop|afk
  1890. # [17:04] <Optimizer> okay
  1891. # [17:05] <Optimizer> error http://pastebin.mozilla.org/1992675
  1892. # [17:05] * Quits: fabrice|zZz (fabrice@moz-94F028C6.hsd1.ca.comcast.net) (Quit: Leaving.)
  1893. # [17:06] * Joins: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net)
  1894. # [17:06] * Joins: jfkthame (jfkthame@35C5CD28.E5218CC8.9542EC20.IP)
  1895. # [17:06] * armenzg_mtg is now known as armenzg
  1896. # [17:06] * Joins: jammink (textual@2557E599.66715431.D25A875A.IP)
  1897. # [17:06] <jlebar> Optimizer: I guess it doesn't work on Windows.
  1898. # [17:06] * Joins: nhirata (anonymous@moz-BE33DA21.fw1.sfo1.mozilla.net)
  1899. # [17:06] <jlebar> It's probably because cygwin doesn't have nice.
  1900. # [17:07] * Joins: jorendorff (jorendorff@moz-E7E6609F.hfc.comcastbusiness.net)
  1901. # [17:07] <jlebar> Optimizer: anywho, you can always make 2>&1 | tee out
  1902. # [17:07] * hwine-zzz is now known as hwine
  1903. # [17:08] <Optimizer> same error
  1904. # [17:08] <Optimizer> or you meant to do that in the building process ?
  1905. # [17:08] * gregglind_away is now known as gregglind
  1906. # [17:10] * Joins: Dagger (Dagger@moz-9AFCB530.cable.virginmedia.com)
  1907. # [17:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/450321f661e8 - Brian Hackett - Bug 814396 - CharCodeAt OOL call should not rejoin in the middle of the inline path, r=jandem.
  1908. # [17:11] * Quits: @ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP) (Input/output error)
  1909. # [17:11] * Joins: Edgar (Thunderbir@moz-B998B502.dynamic.hinet.net)
  1910. # [17:11] * Quits: MisfitGeek (MisfitGeek@moz-BD3E98A8.hsd1.nh.comcast.net) (Ping timeout)
  1911. # [17:11] * Quits: milan (milan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  1912. # [17:11] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  1913. # [17:11] * Joins: milan (milan@F2D29657.F60B0462.67AC9B1.IP)
  1914. # [17:12] * Quits: peterv (peterv@moz-9067AD6A.access.telenet.be) (Quit: ZNC - http://znc.in)
  1915. # [17:13] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  1916. # [17:13] * Quits: milan (milan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  1917. # [17:13] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  1918. # [17:13] * Joins: milan (milan@F2D29657.F60B0462.67AC9B1.IP)
  1919. # [17:13] <jlebar> Optimizer: I mean do make 2>&1 | tee out to capture the output of make, instead of using the rse tool, which is effectively doing the same thing.
  1920. # [17:14] <Waldo> edmorley: note that bug 782818 is expected to regress perf on stuff, in the interests of getting correctness data from nightlies (it's off, or will be flipped off, for aurora/beta/release or so); I'm not actually sure how well that'll play with perf-testing ongoing development work
  1921. # [17:14] * Joins: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  1922. # [17:14] <mfinkle> jhopkins|buildduty, can you kick off a respin of the firefox android nightlies?
  1923. # [17:14] <edmorley> Waldo: thank you :-)
  1924. # [17:15] <jhopkins|buildduty> mfinkle: sure
  1925. # [17:15] <mfinkle> i don't want all nightlies respun, just android
  1926. # [17:15] <jhopkins|buildduty> ok
  1927. # [17:15] <mfinkle> jhopkins|buildduty, thanks!
  1928. # [17:15] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1929. # [17:15] <Waldo> edmorley: I randomly saw bugmail from that percolate to the top of my bugmail inbox, figured I should say something since I remember awfy going easily 10% worse or whatever the previous time it landed :-)
  1930. # [17:16] <edmorley> :-)
  1931. # [17:16] * Waldo is a little surprised we think we can take that, and the futzing to overall perf numbers, when it inhibits overall development perf testing
  1932. # [17:16] * catlee is now known as catlee-afk
  1933. # [17:16] <Waldo> I wonder if there's some #define that can be used to turn it off to get unadulterated numbers, maybe
  1934. # [17:16] * Joins: peterv (peterv@moz-9067AD6A.access.telenet.be)
  1935. # [17:17] * Joins: kdcw (kdc@moz-F7413045.pk.shawcable.net)
  1936. # [17:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/946bc83d50df - Brian Hackett - Bug 813671 - ModI should not clobber input register, r=jandem.
  1937. # [17:18] * Quits: lerc (quassel@121-74-243-85.telstraclear.net) (Ping timeout)
  1938. # [17:18] <gcp> peterv: ping
  1939. # [17:19] * Joins: bz (bzbarsky@moz-C7E1A91E.bstnma.fios.verizon.net)
  1940. # [17:19] * ChanServ sets mode: +o bz
  1941. # [17:20] <edmorley> Waldo: true
  1942. # [17:21] <edmorley> Waldo: one could push to try with the enable-js-diagnostics mozconfig line removed aiui
  1943. # [17:21] * Joins: lerc (quassel@moz-7133CD84.telstraclear.net)
  1944. # [17:21] <Waldo> edmorley: trying isn't what I'd worry about most, it's that people looking at trends observed on tinderbox might not see it -- unless trends on tinderbox only use unaffected builds
  1945. # [17:22] * Waldo really should check to see how the patch worked
  1946. # [17:22] * Quits: pnemsak (Miranda@moz-BE85878E.citicom.sk) (Quit: pnemsak)
  1947. # [17:22] * Joins: josh (josh@moz-5D371A2.adsl2.static.versatel.nl)
  1948. # [17:22] * joduinn-afk is now known as joduinn
  1949. # [17:23] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/c5ebd9a835e4 - seabld - Added tag SEAMONKEY_2_15b4_BUILD1 for changeset FIREFOX_18_0b4_BUILD1. CLOSED TREE a=release
  1950. # [17:23] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/fda8c82ee65f - seabld - Added tag SEAMONKEY_2_15b4_RELEASE for changeset FIREFOX_18_0b4_BUILD1. CLOSED TREE a=release
  1951. # [17:24] * Quits: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  1952. # [17:24] * Quits: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net) (Client exited)
  1953. # [17:25] * Quits: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net) (Quit: Leaving.)
  1954. # [17:26] * dhylands|sleep is now known as dhylands
  1955. # [17:27] * Joins: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  1956. # [17:29] <jhopkins|buildduty> mfinkle: no problem. i've kicked off 'Android Armv6 mozilla-central nightly' and 'Android mozilla-central nightly' builds at revision edd45de440ba
  1957. # [17:29] <mfinkle> jhopkins|buildduty, great
  1958. # [17:30] * Quits: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Quit: mkaply)
  1959. # [17:31] * khuey|away is now known as khuey
  1960. # [17:31] <Optimizer> jlebar, glandium: I now have the whole 2 mb file with all the output ...
  1961. # [17:31] <NeilAway> gfritzsche: what's the default timeout?
  1962. # [17:31] <jlebar> Optimizer: Okay, now find the first occurrence of "error".
  1963. # [17:32] * Joins: tchevalier (Thunderbir@moz-CF45248.w109-210.abo.wanadoo.fr)
  1964. # [17:32] * Joins: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP)
  1965. # [17:32] <gfritzsche> NeilAway: 45sec
  1966. # [17:32] <Optimizer> <jsloader_s.lib.desc>: Found error
  1967. # [17:32] * Quits: OccupyGreenland (ericjung@moz-F14FA912.bstnma.fios.verizon.net) (Quit: Leaving)
  1968. # [17:32] * hwine is now known as hwine-zzz
  1969. # [17:33] <Optimizer> sorry , this one : d:\mozilla-central\firefox\dist\include\nsIDOMHTMLScriptElement.h(25) : error C2504: 'nsIDOMHTMLElement' : base class undefined
  1970. # [17:33] * hwine-zzz is now known as hwine|afk
  1971. # [17:33] * Joins: knelson (Adium@2557E599.66715431.D25A875A.IP)
  1972. # [17:33] * Parts: knelson (Adium@2557E599.66715431.D25A875A.IP)
  1973. # [17:33] <gfritzsche> NeilAway: have only rechecked a bit with 17 now
  1974. # [17:33] <gfritzsche> (to not trip over debug-only behaviour)
  1975. # [17:33] * Joins: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  1976. # [17:33] * Joins: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net)
  1977. # [17:33] * Joins: hurley (hurley@moz-E76806A0.dsl.static.sonic.net)
  1978. # [17:34] <jlebar> Optimizer: Well, that tells you something.
  1979. # [17:34] <jlebar> Optimizer: Is your tree clean? If so, perhaps you need to rm -rf your objdir.
  1980. # [17:34] <Optimizer> but I just did a hg pull, and then hg update
  1981. # [17:35] <jlebar> Optimizer: That doesn't mean your tree is necessarily clean
  1982. # [17:35] * Quits: josh (josh@moz-5D371A2.adsl2.static.versatel.nl) (Quit: josh)
  1983. # [17:35] * Joins: pcwalton (pcwalton@moz-481A040C.hsd1.ca.comcast.net)
  1984. # [17:35] <Optimizer> so I just need to delete my objdir ?
  1985. # [17:35] <jlebar> Optimizer: You can also check on tbpl to see whether the rev you built off is burning.
  1986. # [17:35] <jlebar> Optimizer: That's one thing you could do, if hg status is empty and if tbpl shows that you built off a good revision.
  1987. # [17:36] <NeilAway> gfritzsche: hmm, I guess I should have tried waiting
  1988. # [17:36] * Joins: glob (glob@moz-BE33DA21.fw1.sfo1.mozilla.net)
  1989. # [17:36] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/09d66d9ccb2e - Kartikaya Gupta - Bug 818060 - Add a memory reporter for graphics textures. r=njn,BenWa
  1990. # [17:37] <BenWa> It's get when m-c merge come in and my inbox is full of important bugs being resolved :)
  1991. # [17:37] <BenWa> it's nice when*
  1992. # [17:37] <edmorley> :-)
  1993. # [17:38] * Quits: till (till@moz-4B94BBA8.web.vodafone.de) (Connection reset by peer)
  1994. # [17:38] <avih> jrmuizel: i started by sending mMostRecentRefresh to LayerManager, and i see that PostPresent happens after the refresh driver update exits. is this duration still relevant to us then? or maybe the refresh driver should calculate the processing time itself and send that number to the layer manager? http://pastebin.mozilla.org/1992753
  1995. # [17:38] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  1996. # [17:39] * Joins: till (till@moz-4B94BBA8.web.vodafone.de)
  1997. # [17:39] <gfritzsche> NeilAway: well, who knows how broken it is after waiting ;)
  1998. # [17:39] <jrmuizel> avih: looking...
  1999. # [17:39] <avih> jrmuizel: i was expecting to see 1 2 3 4 prints, and instead i get 1 2 4 3
  2000. # [17:40] * Joins: rbgray (chatzilla@moz-F1171FD7.plustechnologies.com)
  2001. # [17:42] <avih> jrmuizel: sample output of some animation: http://pastebin.mozilla.org/1992775
  2002. # [17:42] * Joins: aklotz (Thunderbir@moz-55246988.cg.shawcable.net)
  2003. # [17:42] * Quits: till (till@moz-4B94BBA8.web.vodafone.de) (Ping timeout)
  2004. # [17:43] <jrmuizel> avih: I'm a bit confused by that because I see stacks like:
  2005. # [17:43] <jrmuizel> avih: http://pastebin.mozilla.org/1992776
  2006. # [17:43] * Quits: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se) (Ping timeout)
  2007. # [17:44] <jrmuizel> avih: although hold on
  2008. # [17:44] * Joins: ferjm (ferjm@moz-23947203.red-88-0-242.dynamicip.rima-tde.net)
  2009. # [17:44] <avih> jrmuizel: maybe u need to update, vlad's timing patch landed, and i updated to it. there's no more Notify at the refresh driver
  2010. # [17:44] * armenzg is now known as armenzg_brb
  2011. # [17:45] <jrmuizel> avih: nope I was looking at the wrong layer manager
  2012. # [17:46] <jrmuizel> avih: here's the correct stack
  2013. # [17:46] <jrmuizel> http://pastebin.mozilla.org/1992777
  2014. # [17:46] * Joins: fabrice (fabrice@2557E599.66715431.D25A875A.IP)
  2015. # [17:46] <avih> jrmuizel: right, so this doesn't start at nsRefreshManager::DoTick()
  2016. # [17:46] <jrmuizel> avih: ok, so it looks like the timing in the refresh driver doesn't include composite time
  2017. # [17:47] * Joins: gwagner_ (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  2018. # [17:47] <vlad> it does not, correct
  2019. # [17:47] <vlad> compositing happens after, which is probably not ideal
  2020. # [17:47] <jrmuizel> avih: and we want to include all of the time from refresh driver tick to composite complete
  2021. # [17:48] * Joins: zwol (zack@moz-84723B13.pitbpa.fios.verizon.net)
  2022. # [17:48] <avih> vlad: so vm->ProcessPendingUpdates(); flushes the layout, and composition happens afterwards?
  2023. # [17:49] <jrmuizel> the number 4 measurement is interesting but not as valuable as the larger 3 measurement
  2024. # [17:49] * Fallen|away is now known as Fallen
  2025. # [17:49] <avih> jrmuizel: the question is, now that it's not a single sequence, if other things can happen in between which would invalidate the measurements
  2026. # [17:49] <jrmuizel> avih: yes and no
  2027. # [17:50] <avih> ok, so other things happen, but which are part of the paint procesing, hence valueable?
  2028. # [17:50] * Joins: ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP)
  2029. # [17:50] * ChanServ sets mode: +o ehsan
  2030. # [17:50] <jrmuizel> things can happen inbetween that make it more noisy, but not including composite time doesn't give a fair view of painting
  2031. # [17:51] <avih> yes, i agree with that
  2032. # [17:51] <jrmuizel> avih: i.e. if you move things from the painting to the compositing step the #4 measurement will go down, but the user won't have a better experience
  2033. # [17:51] * Quits: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP) (Ping timeout)
  2034. # [17:51] <avih> yup
  2035. # [17:51] * geekboy|afk is now known as geekboy
  2036. # [17:51] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1868793fca42 - Kartikaya Gupta - Bug 820545 - Update comment in about:rights to be more accurate. r=gcp
  2037. # [17:52] * Joins: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP)
  2038. # [17:52] <avih> jrmuizel: so we stick to postPresent - mMostRecentRefresh then?
  2039. # [17:52] <jrmuizel> avih: yeah, I think that makes the most sense
  2040. # [17:52] <avih> jrmuizel: k, thanks.
  2041. # [17:53] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Quit: Leaving.)
  2042. # [17:54] <avih> jrmuizel: just to get my terminology right, the vm->ProcessPendingUpdates() is flushing layout changes, and after we get a new updated layout, composition happens which turns it into an image?
  2043. # [17:54] * Quits: biesi__ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  2044. # [17:54] * Quits: Cwiiis (cwiiis@moz-125BA310.croy.cable.virginmedia.com) (Quit: Leaving)
  2045. # [17:54] * Quits: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  2046. # [17:55] * Joins: mib_0jb5yv (Mibbit@5A7EA39A.C83184C3.75F025A9.IP)
  2047. # [17:55] * Quits: msucan (mihai@5D30AB1B.F63D1FEA.699550A1.IP) (Ping timeout)
  2048. # [17:56] * Quits: mib_0jb5yv (Mibbit@5A7EA39A.C83184C3.75F025A9.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2049. # [17:56] * Quits: jdm (jdm@DB05BBF2.BB1F48F2.971E19F6.IP) (Input/output error)
  2050. # [17:57] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2051. # [17:57] * Joins: Ms2ger (Ms2ger@7FACCFF6.C48AF8ED.187A1082.IP)
  2052. # [17:57] <jrmuizel> avih: ProcessPendingUpdates() will flush layout and paint the content to a tree of layers (images)
  2053. # [17:58] <@ehsan> NeilAway: the goal there is to defend against murphy, not machiavelli!
  2054. # [17:58] * Joins: cpeterson (cpeterson@moz-175D1473.hsd1.ca.comcast.net)
  2055. # [17:58] <jrmuizel> avih: compositing takes the layers and composites them together onto the screen
  2056. # [17:58] <avih> jrmuizel: thanks. in that case, it seems composition takes more than i expected, i think.
  2057. # [17:58] * Joins: MisfitGeek (MisfitGeek@moz-BD3E98A8.hsd1.nh.comcast.net)
  2058. # [17:59] <jrmuizel> avih: that could well be
  2059. # [17:59] <jrmuizel> glandium: ping
  2060. # [17:59] <avih> as the difference between 4 and 3 is about 50%-100% of 4
  2061. # [18:00] <avih> OMTC will do good :)
  2062. # [18:00] * Joins: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP)
  2063. # [18:00] * Joins: Cwiiis (cwiiis@moz-125BA310.croy.cable.virginmedia.com)
  2064. # [18:00] <glandium> jrmuizel: pong
  2065. # [18:00] <jrmuizel> avih: yeah, there's probably stuff that could be done to improve that without OMTC
  2066. # [18:00] <jrmuizel> glandium: just to clarify your comment on bug 821291
  2067. # [18:01] <avih> jrmuizel: but right now, 3 still happens sequentially after 4, in the same thread, right?
  2068. # [18:01] <avih> (possibly with other stuff in between)
  2069. # [18:01] <jrmuizel> we can't have libmozgnome part of libxul because of the dependencies on gnomevfs and gconf that it creates?
  2070. # [18:01] <jrmuizel> avih: yes correct
  2071. # [18:01] <avih> jrmuizel: k, thx.
  2072. # [18:02] <glandium> jrmuizel: we can't have libmozgnome part of libxul when building with gnomevfs or gconf. We're not doing that by default, but some people might be
  2073. # [18:02] * Quits: marcoz (marco.zehe@moz-C579E6B2.dip.t-dialin.net) (Quit: Leaving.)
  2074. # [18:02] <jrmuizel> glandium: I see
  2075. # [18:03] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2076. # [18:04] <tbsaunde> glandium: if we don't do it in any of our builds why odes it matter?
  2077. # [18:04] * Quits: vingtetun (vingtetun@moz-F8747CC6.dsl.ovh.fr) (Ping timeout)
  2078. # [18:04] <tbsaunde> if a distro enables gconf / gvfs then why is it a problem for them to add a dependancy to those of libxul
  2079. # [18:04] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2e34b7c8a339 - Rafael Ávila de Espíndola - Bug 815709 - Shutdown time is read in the main thread. r=ehsan.
  2080. # [18:05] <glandium> tbsaunde: because they may not want an unconditional dependency
  2081. # [18:05] * Joins: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se)
  2082. # [18:05] * AutomatedTester is now known as AutomatedTester|away
  2083. # [18:05] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Quit: Konversation terminated!)
  2084. # [18:05] <glandium> tbsaunde: for, e.g. people using kde
  2085. # [18:06] <tbsaunde> glandium: yeah, I suppose, so really its a question of how much we care about supporting the ability to build with that stuff
  2086. # [18:06] <glandium> tbsaunde: i guess at this point, the only people building with gnomevfs/gconf are either doing it by mistake, or as backports for very old distros
  2087. # [18:06] <glandium> tbsaunde: that's why i asked in the bug if we shouldn't just remove that code
  2088. # [18:06] * Joins: msucan (mihai@63A8E544.32394495.BD62875.IP)
  2089. # [18:06] <zwol> glandium: out of curiosity, what does our gvfs/gconf support actually *do*?
  2090. # [18:06] * Joins: akeybl (akeybl@2557E599.66715431.D25A875A.IP)
  2091. # [18:07] <gaston> zwol: not much
  2092. # [18:07] <glandium> zwol: get system proxy config, and launch helper apps
  2093. # [18:07] <glandium> mostly
  2094. # [18:07] <zwol> hm
  2095. # [18:08] <zwol> so, either completely irrelevant or vital, depending on your circumstances
  2096. # [18:09] * armenzg_brb is now known as armenzg
  2097. # [18:09] * Quits: Edgar (Thunderbir@moz-B998B502.dynamic.hinet.net) (Quit: Edgar)
  2098. # [18:09] * coop|afk is now known as coop
  2099. # [18:09] * Quits: phx (Adium@1E6E698A.3591AA85.689607DE.IP) (Quit: Leaving.)
  2100. # [18:10] * Joins: lizzard (ehenry@moz-B5A3ACB4.tmodns.net)
  2101. # [18:10] * Joins: Mossop (mossop@2557E599.66715431.D25A875A.IP)
  2102. # [18:10] <NeilAway> ehsan: right, but that doesn't explain why you want to make the operator delete private too
  2103. # [18:10] <@ehsan> NeilAway: how so?
  2104. # [18:11] * Joins: bdahl (bdahl@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2105. # [18:11] * joey is now known as joey-away
  2106. # [18:11] <@ehsan> new/delete should have the same semantics really
  2107. # [18:11] <NeilAway> ehsan: well, why do you want to make operator delete private?
  2108. # [18:11] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  2109. # [18:11] <@ehsan> NeilAway: because new is private
  2110. # [18:11] <NeilAway> ehsan: so?
  2111. # [18:11] <zwol> isn't that asking for kaboom the moment you try to delete the object through a base pointer?
  2112. # [18:12] <@ehsan> NeilAway: I'm not sure if you have a question here really
  2113. # [18:12] <@ehsan> zwol: sure, my goal was to defend against unintentional mistakes
  2114. # [18:12] <NeilAway> zwol: no, the base destructor is virtual, so you can delete the object anyway
  2115. # [18:12] * Joins: ekr_ (ekr@moz-E43B1A40.lax.megapath.net)
  2116. # [18:13] <NeilAway> zwol: so making operator delete private is pointless
  2117. # [18:13] <zwol> ehsan: I may be misremembering, but it sounds like you are _creating_ a situation where things can blow up in an unsuspecting third party's face
  2118. # [18:13] * Quits: peterv (peterv@moz-9067AD6A.access.telenet.be) (Ping timeout)
  2119. # [18:13] <@ehsan> NeilAway: sure, if you're out there trying to abuse things, you can do that
  2120. # [18:13] <@ehsan> zwol: no, I'm not
  2121. # [18:13] <NeilAway> ehsan: look
  2122. # [18:13] * Quits: ekr (ekr@moz-E43B1A40.lax.megapath.net) (Ping timeout)
  2123. # [18:13] * ekr_ is now known as ekr
  2124. # [18:13] <NeilAway> ehsan: making operator delete private gains you NOTHING
  2125. # [18:13] <NeilAway> ehsan: except a link error
  2126. # [18:14] <@ehsan> NeilAway: it's considered bad practice to overload new and not delete
  2127. # [18:14] <@ehsan> can we first agree on that please?
  2128. # [18:14] <NeilAway> ehsan: no
  2129. # [18:14] <@ehsan> ok well
  2130. # [18:14] <NeilAway> ehsan: that's wrong for a start
  2131. # [18:14] <NeilAway> ehsan: everyone who wants to make an object non-heap simply makes new private and NOT delete
  2132. # [18:15] * Joins: dveditz (dveditz@moz-CA4FEF00.hsd1.ca.comcast.net)
  2133. # [18:15] * ChanServ sets mode: +o dveditz
  2134. # [18:15] <@ehsan> ok
  2135. # [18:15] <@ehsan> I don't agree that is a good practice
  2136. # [18:15] <bc> bsmedberg: i've retested it locally and have it in the queue to be retested by the bughunter workers, but i had started a retest of all crashes i've seen in the last month this morning and it might be a while before the worekrs get to it. From what I can tell at the moment, I can't reproduce it. I'll comment more when the tests complete.
  2137. # [18:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2aae75e86935 - Ed Morley - Backout 09d66d9ccb2e (bug 818060) for build failures on Windows
  2138. # [18:15] <gregglind> have there been improvements on the page thumbnailer in the last few months?
  2139. # [18:16] <@bsmedberg> bc: ok, thanks
  2140. # [18:16] * @bsmedberg will work on other things for now
  2141. # [18:16] * Quits: tchevalier (Thunderbir@moz-CF45248.w109-210.abo.wanadoo.fr) (Quit: tchevalier)
  2142. # [18:16] * Joins: tchevalier (Thunderbir@moz-CF45248.w109-210.abo.wanadoo.fr)
  2143. # [18:16] * Quits: MisfitGeek (MisfitGeek@moz-BD3E98A8.hsd1.nh.comcast.net) (Quit: Leaving)
  2144. # [18:17] * Joins: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP)
  2145. # [18:18] * Quits: @dveditz (dveditz@moz-CA4FEF00.hsd1.ca.comcast.net) (Ping timeout)
  2146. # [18:18] * Joins: dveditz (dveditz@A5A0595A.66715431.D25A875A.IP)
  2147. # [18:18] * ChanServ sets mode: +o dveditz
  2148. # [18:19] * Quits: T3 (T3@moz-76FE1A48.dsl.telesp.net.br) (Client exited)
  2149. # [18:21] * Joins: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP)
  2150. # [18:22] * Quits: gcp (gcp@moz-D0E475EA.access.telenet.be) (Input/output error)
  2151. # [18:22] * Joins: vingtetun (vingtetun@moz-F8747CC6.dsl.ovh.fr)
  2152. # [18:22] * Joins: juanb (jbecerra@2557E599.66715431.D25A875A.IP)
  2153. # [18:23] * Quits: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP) (Connection reset by peer)
  2154. # [18:23] * Quits: jfkthame (jfkthame@35C5CD28.E5218CC8.9542EC20.IP) (Ping timeout)
  2155. # [18:24] * Joins: jfkthame (jfkthame@1C457759.3AD06A77.86F5061.IP)
  2156. # [18:24] * Quits: ekr (ekr@moz-E43B1A40.lax.megapath.net) (Ping timeout)
  2157. # [18:25] * Joins: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2158. # [18:25] * Joins: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP)
  2159. # [18:25] * Joins: jgriffin (jgriffin@moz-DD9CBA45.hsd1.wa.comcast.net)
  2160. # [18:25] * Joins: gcp (gcp@moz-D0E475EA.access.telenet.be)
  2161. # [18:26] * sheppy is now known as sheppy-lunch
  2162. # [18:27] * Joins: mccr8 (mccr8@2557E599.66715431.D25A875A.IP)
  2163. # [18:27] <Waldo> NeilAway, ehsan: given that privatizing new/delete either/neither doesn't help with malloc+cast, I'm not sure it's worth the trouble or misleadingness of it to do anything at all really for non-heap classes
  2164. # [18:27] * Quits: pcwalton (pcwalton@moz-481A040C.hsd1.ca.comcast.net) (Quit: pcwalton)
  2165. # [18:28] <@ehsan> Waldo: the only goal here is to prevent *accidental* creation of the object on the heap using a simple foo = new Foo()
  2166. # [18:29] <@ehsan> Waldo: I have no interest in fighting the losing battle of preventing bad things from happening in C++
  2167. # [18:29] <@ehsan> Waldo: NeilAway thinks that it's good practice to overload new and not delete, and I disagree with him
  2168. # [18:29] <@ehsan> and that pretty much leaves us at an impasse
  2169. # [18:30] * Joins: peterv (peterv@moz-9067AD6A.access.telenet.be)
  2170. # [18:30] <Waldo> ehsan: I dunno, maybe JS is just different that way, but we use cx->new_<T>() pretty much everywhere, so new/delete deleting would be almost useless
  2171. # [18:30] <NeilAway> ehsan: also, overload != privatize, so please keep on topic
  2172. # [18:30] <@ehsan> Waldo: it's not common practice in C++ to use placement new that much
  2173. # [18:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/021a624ea78e - Andrew McCreight - bug 804220 - Make IDBWrapperCache::SetScriptOwner infallible. r=khuey
  2174. # [18:31] <@ehsan> NeilAway: yes but I asked you whether you think it's ok to overload one and not the other and you said yes
  2175. # [18:31] * Joins: bsmith (bsmith@2557E599.66715431.D25A875A.IP)
  2176. # [18:31] <@ehsan> NeilAway: and privatizing only enters the picture once you overload the operator
  2177. # [18:31] * Quits: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se) (Ping timeout)
  2178. # [18:33] * Joins: T3 (T3@moz-76FE1A48.dsl.telesp.net.br)
  2179. # [18:34] <davidb> khuey, KaiRo I'm confused about bug 817946 … but in any event please cc me on the b2g one :)
  2180. # [18:34] * Fallen is now known as Fallen|away
  2181. # [18:35] * Joins: ekr (ekr@moz-E43B1A40.lax.megapath.net)
  2182. # [18:35] <@khuey> davidb: there's no non-b2g anything here
  2183. # [18:35] <davidb> oh
  2184. # [18:35] <davidb> ok the crash stacks one
  2185. # [18:36] <davidb> KaiRo: are you filing?
  2186. # [18:36] <@khuey> that one doesn't exist yet ;-)
  2187. # [18:37] * Joins: jhammel (jhammel@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2188. # [18:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3e3800d9e4b6 - Ed Morley - Backout 25c589434eae (bug 817731) for xpcshell timeouts on Windows
  2189. # [18:39] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2190. # [18:40] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Quit: Too much information in my brain driving me insane)
  2191. # [18:40] * Joins: biesi__ (cbiesinger@moz-48E61CD.snc1.tfbnw.net)
  2192. # [18:40] * glob is now known as glob|away
  2193. # [18:41] <firebot> Check-in:
  2194. # [18:41] * Quits: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP) (Client exited)
  2195. # [18:41] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/049f91872fbf - Robert Strong - Partial fix (all but test_0201_app_launch_apply_update_svc.js) for - Bug 762032 - Intermittent test_0201_app_launch_apply_update.js,
  2196. # [18:41] <firebot> test_0201_app_launch_apply_update_svc.js test_0203_app_launch_apply_update_svc.js | WindowsError: [Error 13] The process cannot access the file because it is being used by another process: '...helper.exe'. r=bbondy
  2197. # [18:41] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3cfc257e29a5 - Robert Strong - Bug 818333 - Make confvars.sh for desktop the same across branches where possible. r=glandium
  2198. # [18:41] * Joins: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP)
  2199. # [18:42] * catlee-afk is now known as catlee-lunch
  2200. # [18:42] * davidb files bug 821353
  2201. # [18:42] <NeilAway> ehsan: well, it depends on what your goal is, in your case the goal is to prevent accidental creation, and you don't even implement it, so it's a bit disingenuous to claim that your non-implementation is overloading it
  2202. # [18:42] * Joins: terrence (terrence@moz-7109B35.lightspeed.sntcca.sbcglobal.net)
  2203. # [18:43] <@ehsan> NeilAway: ok feel free to use a better term if you know of one
  2204. # [18:43] <@ehsan> I don't
  2205. # [18:43] * Quits: ekr (ekr@moz-E43B1A40.lax.megapath.net) (Quit: ekr)
  2206. # [18:44] * Joins: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP)
  2207. # [18:44] * Quits: lizzard (ehenry@moz-B5A3ACB4.tmodns.net) (Quit: lizzard)
  2208. # [18:45] * Quits: msucan (mihai@63A8E544.32394495.BD62875.IP) (Ping timeout)
  2209. # [18:45] <NeilAway> ehsan: well, we could use the C++11 term and say we're deleting operator new, although that gets confusing because you want to delete delete and I don't
  2210. # [18:46] * Joins: redfive (chatzilla@CAB81766.4502AAFB.4989C8B.IP)
  2211. # [18:46] * armenzg is now known as armenzg_lunch
  2212. # [18:46] <@ehsan> ok let's call it that
  2213. # [18:48] * dholbert|afk is now known as dholbert
  2214. # [18:48] <KaiRo> davidb: I was in a 1:1, but wanted to file after that, I see you've already done that, I'll fill in a number of sample cases and any info I have
  2215. # [18:48] * baku is now known as baku|away
  2216. # [18:48] <davidb> awesome]
  2217. # [18:48] * Quits: gwagner_ (Gregor@moz-B8B530C2.hsd1.ca.comcast.net) (Quit: gwagner_)
  2218. # [18:49] * Quits: Boriss (FlyingToas@88F51059.F3BBB17D.144F44FA.IP) (Quit: Boriss)
  2219. # [18:50] * Quits: @dveditz (dveditz@A5A0595A.66715431.D25A875A.IP) (Quit: )
  2220. # [18:52] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/a80ec6b90878 - Josh Matthews - Bug 769288 - Part 2: Avoid storing intermediate cert data for private contexts. r=bsmith sr=mayhemer
  2221. # [18:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/072da0be4236 - Josh Matthews - Bug 769288 - Part 5: Close private socket connections when the lsat private browsing instance dies. r=bsmith,mcmanus
  2222. # [18:52] * Quits: dbradley (dbradley@7AD66899.7A60A104.52E8B953.IP) (Quit: )
  2223. # [18:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/38cd815da29a - Josh Matthews - Bug 769288 - Part 3: Clear all temporary cert overrides upon leaving private browsing. r=bsmith
  2224. # [18:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/ee2822d2eab9 - Josh Matthews - Bug 769288 - Part 4: Clear SSL session cache upon leaving private browsing. r=bsmith
  2225. # [18:52] * Joins: bnicholson (bnicholson@2557E599.66715431.D25A875A.IP)
  2226. # [18:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/761ff8b47a4e - Josh Matthews - Bug 769288 - Part 6: Remove global private browsing NSS cleanup on exit. r=ehsan
  2227. # [18:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/d9336f8c0f6c - Josh Matthews - Bug 769288 - Part 7: Use separate SSL session cache entries for private connections. r=mayhemer
  2228. # [18:52] * Quits: ehugg (chatzilla@CE3BE0DD.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121128204232])
  2229. # [18:52] <firebot> http://hg.mozilla.org/mozilla-central/rev/9e9281ce1b63 - Josh Matthews - Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith
  2230. # [18:53] <avih> jrmuizel: looking at the stopFrameTimeRecording IDL ( http://mxr.mozilla.org/mozilla-central/source/dom/interfaces/base/nsIDOMWindowUtils.idl#1065 ), when it's used from JS, it's either myFramesArray = stopFrameTimeRecording() or myFramesArray = stopFrameTimeRecording(outFrameCount)?, if that's the case, then wouldn't adding the frame processing times as an optional out be a good solution?
  2231. # [18:53] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/29e9bc98ea77 - Fabrice Desré - Bug 815173 - The interface feels sluggish when installing a big app [r=ferjm]
  2232. # [18:53] * Quits: @bz (bzbarsky@moz-C7E1A91E.bstnma.fios.verizon.net) (Quit: Leaving)
  2233. # [18:54] <jrmuizel> avih: myFramesArray = stopFrameTimeRecording()
  2234. # [18:54] <@bsmedberg> I'm getting "Loading failed: parsererror" loading TBPL for inbound
  2235. # [18:54] <@bsmedberg> does anyone know why?
  2236. # [18:54] * Joins: mwargers (chatzilla@moz-E31CD2CB.mozilla.org)
  2237. # [18:54] * Joins: hipokr1t (hipokrit@1BF5DFDB.CA40E1F7.C558AD24.IP)
  2238. # [18:54] <jrmuizel> avih: the count isn't used from js afaik
  2239. # [18:54] <@bsmedberg> actually, same error on a try result also. Huh.
  2240. # [18:54] <jrmuizel> avih: yes another out param should work
  2241. # [18:54] * Quits: hipokrit (hipokrit@1BF5DFDB.CA40E1F7.C558AD24.IP) (Ping timeout)
  2242. # [18:55] <Ms2ger> bsmedberg, same here
  2243. # [18:55] <avih> jrmuizel: isn't used right now, but it _could_ be used according to the IDL, yes? (making sure I follow the IDL def)
  2244. # [18:55] <Ms2ger> edmorley?
  2245. # [18:55] * jdm is now known as jdm|busy
  2246. # [18:55] <edmorley> bsmedberg: treestatus response issues, was mid filing a bug
  2247. # [18:55] <jrmuizel> avih: I don't think it can, but I'm not sure
  2248. # [18:55] * Joins: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP)
  2249. # [18:55] <@bsmedberg> edmorley: is it safe to push to inbound?
  2250. # [18:55] * Joins: msucan (mihai@CDEB00D4.8819A7BF.BD62875.IP)
  2251. # [18:56] <jrmuizel> avih: the idl array syntax is very weird
  2252. # [18:56] <edmorley> bsmedberg: oh sorry, s/treestatus/google calendar/
  2253. # [18:56] <edmorley> bsmedberg: yes
  2254. # [18:56] <@bsmedberg> ty!
  2255. # [18:56] * Quits: mwargers (chatzilla@moz-E31CD2CB.mozilla.org) (Ping timeout)
  2256. # [18:56] <avih> jrmuizel: you mean as an out var? because it already has an array as a ret val there..
  2257. # [18:56] * Joins: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net)
  2258. # [18:56] * Joins: bz (bzbarsky@moz-C7E1A91E.bstnma.fios.verizon.net)
  2259. # [18:56] * ChanServ sets mode: +o bz
  2260. # [18:56] <Ms2ger> SyntaxError: JSON.parse: unexpected character
  2261. # [18:56] <Ms2ger> Ah, good
  2262. # [18:57] <jrmuizel> avih: yeah, the out count might be needed for the array
  2263. # [18:57] <jrmuizel> I'm not really sure
  2264. # [18:57] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2265. # [18:57] * joey-away is now known as joey
  2266. # [18:58] * Joins: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP)
  2267. # [18:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ff6a7246cb9e - Benjamin Smedberg - Bug 776985 - libs-xpcshell-tests should not attempt to install backup files that end in ~, r=ted
  2268. # [18:58] * Joins: dbradley (dbradley@7AD66899.7A60A104.52E8B953.IP)
  2269. # [18:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/acb351f0c50a - Benjamin Smedberg - Bug 818664 - Report plugin version in plugin crash reports, r=josh
  2270. # [18:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9033700cc24f - Benjamin Smedberg - Bug 807757 part PSM - Remove nsIProfileChangeStatus and related veto notifications from PSM r=bsmith
  2271. # [18:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4ebd50016f35 - Benjamin Smedberg - Bug 807757 main part - remove nsIProfileChangeStatus, nsIProfile and remnants of code to support them, r=glandium
  2272. # [18:59] * Joins: ekr (ekr@moz-3EB19FE8.mycingular.net)
  2273. # [18:59] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Quit: Leaving.)
  2274. # [18:59] * Joins: kats-wfh (kats@moz-7A4332AD.compute-1.amazonaws.com)
  2275. # [18:59] * Quits: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP) (Quit: lmandel)
  2276. # [18:59] * catlee-lunch is now known as catlee
  2277. # [19:00] <avih> jrmuizel: i'm essentially asking if adding an optional out array would look like this: http://pastebin.mozilla.org/1992936 and if the syntax for using it would be myFramesArray = stopFrameTimeRecording(resultCount, resultProcessingsArray)
  2278. # [19:00] * armenzg_lunch is now known as armenzg_mtg
  2279. # [19:00] <jrmuizel> avih: unfortunately I have no idea
  2280. # [19:00] * Joins: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP)
  2281. # [19:00] <jrmuizel> avih: you may need to try it and see if it works
  2282. # [19:01] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2283. # [19:01] * Joins: ekr_ (ekr@moz-E43B1A40.lax.megapath.net)
  2284. # [19:01] <@ehsan> jdm|busy: omg omg omg
  2285. # [19:01] <avih> jrmuizel: yeah, though i'm thinking of all the rebuilds i'll have to go through before it works, i'd have preferred to have some rough insight beforehand ;) any idea who might be able to help me with IDL?
  2286. # [19:01] <jdm> ehsan: :)
  2287. # [19:02] * Quits: terrence (terrence@moz-7109B35.lightspeed.sntcca.sbcglobal.net) (Client exited)
  2288. # [19:02] <@ehsan> jdm|busy: shall I land my patch now?
  2289. # [19:02] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2290. # [19:02] * Joins: dzbarsky (Adium@A2CDE42E.80B7983C.B5B6DD03.IP)
  2291. # [19:02] <jdm> ehsan: let's just wait until it goes greenish
  2292. # [19:02] * Joins: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net)
  2293. # [19:02] <@ehsan> jdm|busy: green is overrated ;)
  2294. # [19:03] <@khuey> haha
  2295. # [19:03] <@ehsan> edmorley: ping
  2296. # [19:03] <edmorley> ehsan: hi
  2297. # [19:03] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  2298. # [19:03] <@ehsan> hey
  2299. # [19:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d468da47eef0 - Mark Finkle - Bug 820868 - Lightweight theme previews do not work on Firefox for Android, breaking the preview/install flow r=sriram
  2300. # [19:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ab25a9cef1c8 - Mark Finkle - Bug 819554 - Disable warning for sms protocol r=blassey
  2301. # [19:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1b3ec53cab89 - Mark Finkle - Bug 820623 - Javascript warning on fennec startup (NativeWindow.menu.add) r=kats
  2302. # [19:03] * Waldo sighs
  2303. # [19:03] <@ehsan> edmorley: maybe it's only me, but I'm pretty worried that the devtools tests cause Win7 debug bc to be perma-orange...
  2304. # [19:03] * Quits: cpeterson (cpeterson@moz-175D1473.hsd1.ca.comcast.net) (Input/output error)
  2305. # [19:04] <edmorley> ehsan: yeah :-(
  2306. # [19:04] <Waldo> why haven't we removed the OS/architecture fields from bmo yet, or made them opt-in by component, or something? :-\
  2307. # [19:04] <@ehsan> have you talked to those folks?
  2308. # [19:04] <glob|away> Waldo, other priorities
  2309. # [19:04] * glob|away is now known as glob
  2310. # [19:04] <Waldo> glob: I was asking rhetorically, mostly
  2311. # [19:04] <edmorley> ehsan: I know they have bug 820315 for fixing them
  2312. # [19:04] <jrmuizel> avih: umm
  2313. # [19:04] * Quits: Cwiiis (cwiiis@moz-125BA310.croy.cable.virginmedia.com) (Quit: Leaving)
  2314. # [19:05] <jhammel> Waldo: because i need to file a lot of VAX:BeOS bugs, thank you very much
  2315. # [19:05] <@ehsan> well
  2316. # [19:05] <nemo> hm. insane ways to do parallel processing in javascript. data URI + font-face + truetype hinting language :)
  2317. # [19:05] <jrmuizel> avih: bz probably knows or can point you at someone
  2318. # [19:05] <edmorley> ehsan: I've toyed with the idea of backing it out wholesale, but suspect would be pretty hard now, given all the followup bugs
  2319. # [19:05] <Waldo> glob: just the latest instance of someone who doesn't know better vocally complaining in a bug that somethign wasn't just an OS X issue, is all :-\
  2320. # [19:05] * Joins: lizzard (ehenry@moz-606E6FC0.dsl.static.sonic.net)
  2321. # [19:05] <Waldo> s/gn/ng/
  2322. # [19:05] <@ehsan> edmorley: that doesn't do a lot for those of us who are interested in not having perma orange tests... :(
  2323. # [19:05] <avih> jrmuizel: thanks.
  2324. # [19:05] * Joins: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net)
  2325. # [19:05] <edmorley> ehsan: agreed, which is why I've just been disabling them for now
  2326. # [19:06] <Waldo> and of course the ensuing discussion and/or changing of the field, plus everyone seeing that bugmail, wastes a bunch of time for everyone
  2327. # [19:06] <@ehsan> edmorley: I commented on the bug, maybe my cynicism might be a motivation for them to fix things faster ;)
  2328. # [19:07] <edmorley> ehsan: they're not actually permaorange as far as I can see any more. Or are you looking at birch that doesn't yet have the latest disablings?
  2329. # [19:07] <edmorley> ehsan: thank you
  2330. # [19:07] <@ehsan> edmorley: birch has the latest central, not inbound
  2331. # [19:07] <@ehsan> so maybe things are better on inbound...
  2332. # [19:07] <Waldo> jhammel: don't complain to me, biesi__ is the BeOS module owner
  2333. # [19:07] <jhammel> ha!
  2334. # [19:08] * Joins: nmatsakis (nmatsakis@43CB6079.66715431.D25A875A.IP)
  2335. # [19:08] <biesi__> heh
  2336. # [19:08] <Waldo> jhammel: I'm not kidding https://wiki.mozilla.org/Modules/All
  2337. # [19:08] * Waldo wonders how many years it's been since we compiled on BeOS
  2338. # [19:08] * Joins: terrence (terrence@moz-7109B35.lightspeed.sntcca.sbcglobal.net)
  2339. # [19:09] <edmorley> ehsan: ~16 out of 18 of the last pushes green
  2340. # [19:09] <Callek> Waldo: we still compile on BeOS
  2341. # [19:09] <Callek> just not every file
  2342. # [19:09] * Quits: vtmarvin (Thunderbir@32DFDBE.7102BCB6.B7C3970A.IP) (Quit: vtmarvin)
  2343. # [19:09] * jimm is now known as jimm-lunch
  2344. # [19:09] <@ehsan> edmorley: o_O ;)
  2345. # [19:09] <edmorley> ehsan: but agree this kind of thing should have been sorted before landing
  2346. # [19:09] <Waldo> Callek: and other than nsDOMFile.o we compile with gcc 4.2 still, right?
  2347. # [19:10] * Quits: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  2348. # [19:10] <jhammel> Callek: sounds like someone's the new module owner :P
  2349. # [19:10] <Waldo> Callek: or are you saying it's still possible to get an actual working build somehow?
  2350. # [19:10] <@ehsan> edmorley: yeah, well, anyways, thanks for staying on top of things here
  2351. # [19:10] <edmorley> np
  2352. # [19:10] <Callek> jhammel: Oooo, just because I claim we do, is *not* saying I care that we still do
  2353. # [19:10] <jhammel> Callek: doesn't matter ;)
  2354. # [19:10] <Waldo> Callek: too late!
  2355. # [19:10] * @khuey grumbles
  2356. # [19:10] <Waldo> Callek: you must be new here
  2357. # [19:10] <jhammel> you breathed on it, you own it
  2358. # [19:10] <@khuey> I like how it's easy to catch the infrequent oranges in the record and replay machine
  2359. # [19:10] <Callek> Waldo: I didn't actually claim to touch it, write a patch for it, or anything
  2360. # [19:11] <@khuey> but impossible to catch the frequent ones
  2361. # [19:11] <Callek> :-P
  2362. # [19:11] <Waldo> denial is the first step toward acceptance
  2363. # [19:11] <jhammel> Callek: you talked about it; close enough
  2364. # [19:11] * Waldo would claim seniority of interpretation here, but he's not sure which of us has been around longer
  2365. # [19:11] <Callek> jhammel: yea, I forgot the more obscure something is, the more likely you can own it by making an assertion about it.
  2366. # [19:11] * Joins: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2367. # [19:12] <Waldo> I started doing stuff early 2003ish or so, depending on the definition of "doing stuff"
  2368. # [19:12] <@ehsan> Yoric: ping
  2369. # [19:12] * Joins: myk (myk@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2370. # [19:12] * Joins: kmoir-afk (chatzilla@moz-F9973AAD.cpe.net.cable.rogers.com)
  2371. # [19:12] * Quits: stevensn (ssinger@2D3187CE.F008E516.4B2DF651.IP) (Ping timeout)
  2372. # [19:12] * Joins: cviecco (cviecco@2557E599.66715431.D25A875A.IP)
  2373. # [19:12] * Quits: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP) (Ping timeout)
  2374. # [19:13] * Quits: nical (nico@moz-F8747CC6.dsl.ovh.fr) (Quit: nical)
  2375. # [19:13] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0ba4220f82ff - Dan Mosedale - Bug 819821, adds more logging for STUN, r=jesup
  2376. # [19:13] <edmorley> ehsan: bug 761987 is the toporange that I find the most frustrating at the moment, and many of the others on http://brasstacks.mozilla.com/orangefactor/ 's top 20 are variations on "strange android crashes that we only have one person looking at when they're not being pulled off for B2G"
  2377. # [19:13] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4b218334f0e3 - Dan Mosedale - Bug 819822, fix total failure of 'new mozRTCPeerConnection()' on Android by packaging up PeerConnection bits, r=ted
  2378. # [19:13] * Joins: spohl (Adium@moz-4EB1AD80.lightspeed.sntcca.sbcglobal.net)
  2379. # [19:13] <edmorley> jdm: is landing on m-c really a good idea...? :P
  2380. # [19:14] * Joins: stevensn (ssinger@2D3187CE.F008E516.4B2DF651.IP)
  2381. # [19:14] <edmorley> given the last ~5 attempts?
  2382. # [19:14] * kmoir-afk is now known as kmoir
  2383. # [19:14] <jdm> edmorley: my pride is at stake!
  2384. # [19:14] <edmorley> hehe
  2385. # [19:14] <edmorley> my precious^Wtree is at stake
  2386. # [19:15] <@ehsan> edmorley: I do not expect android tests to not be top oranges... I don't even know what I would do in a world where that's not the case...
  2387. # [19:15] * @ehsan would be so lost
  2388. # [19:15] <jcranmer> I do not expect double negatives to not be annoying...
  2389. # [19:16] * mcote|afk is now known as mcote
  2390. # [19:16] * Quits: RudyL (rudy@moz-F6582B7D.dynamic.hinet.net) (Quit: RudyL)
  2391. # [19:16] <Waldo> jcranmer: I wouldn't disagree
  2392. # [19:16] <edmorley> ehsan: to be fair, we are much better on Android than previously; it's just that I found a few bugs in the test harnesses that caused us to miss all shutdown crashes (and any type of crash on robocop), so we're now seeing more types of failures (that have been there all along)
  2393. # [19:16] <edmorley> Waldo++
  2394. # [19:16] <edmorley> jcranmer++
  2395. # [19:17] * Quits: ekr (ekr@moz-3EB19FE8.mycingular.net) (Quit: Colloquy for iPhone - http://colloquy.mobi)
  2396. # [19:17] * ekr_ is now known as ekr
  2397. # [19:17] <@ehsan> edmorley: isn't that because we have stopped running all of the failing tests? :/
  2398. # [19:17] <Waldo> ignorance is bliss
  2399. # [19:17] <Waldo> there goes edmorley regressing our stats ;-)
  2400. # [19:18] <edmorley> ehsan: actually the Android fixes are primarily the hard work of several of a-team :-)
  2401. # [19:18] <sawrubh> jdm: ehsan is it time for \o/ ?
  2402. # [19:18] <edmorley> ehsan: harness/automation fixes
  2403. # [19:18] <@ehsan> sawrubh: in a couple of hours
  2404. # [19:18] <@ehsan> edmorley: good!
  2405. # [19:19] * Quits: past (Instantbir@moz-4160552A.dsl.dyn.forthnet.gr) (Ping timeout)
  2406. # [19:20] * sawrubh prays to the Mayan gods for the tree to be green
  2407. # [19:20] <jcranmer> only 8 moredays !
  2408. # [19:21] <@ehsan> jcranmer: ah shoot.. yeah :(
  2409. # [19:21] <@ehsan> better fix all of the bugs before then
  2410. # [19:22] <sawrubh> better give people their p**n-mode before then
  2411. # [19:22] * Joins: gandalf (zbraniecki@moz-4F155DA6.hsd1.ca.comcast.net)
  2412. # [19:22] <KaiRo> davidb: ah, and I saw you also already sent email about it with all the important people on it - I had that on my plan as well, but including Alex as well, which I have done on my reply now :)
  2413. # [19:22] * Joins: past (Instantbir@moz-4160552A.dsl.dyn.forthnet.gr)
  2414. # [19:23] <davidb> perfect
  2415. # [19:23] <gcp> peterv: ping
  2416. # [19:23] <Optimizer> how to add a xul to be preprocessed with #ifdef ?
  2417. # [19:24] <edmorley> sawrubh: itym "better give the last minute Christmas shoppers the ability to buy their gifts"
  2418. # [19:24] * Joins: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP)
  2419. # [19:24] <Optimizer> oh, how we always picture the use of private browsing to purchase surprise gifts for wife :|
  2420. # [19:25] * Optimizer (like that ever happens)
  2421. # [19:26] <Mook_as> Optimizer: in jar.mn, prefix with, umm, * I think?
  2422. # [19:26] <Optimizer> oh, that edmorley removed :|
  2423. # [19:26] <edmorley> ?
  2424. # [19:27] <edmorley> oh the wife part
  2425. # [19:27] <Optimizer> no :D
  2426. # [19:28] * jwir3 is now known as jwir3|lunch
  2427. # [19:29] * Quits: mw22 (chatzilla@moz-BD80F5CF.cm-3-1a.dynamic.ziggo.nl) (Ping timeout)
  2428. # [19:29] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2429. # [19:29] * Quits: vicamo (vicamo@moz-166E187D.dynamic.hinet.net) (Quit: Konversation terminated!)
  2430. # [19:29] <sawrubh> ?
  2431. # [19:30] <Optimizer> oh okay, that was a different file
  2432. # [19:30] <edmorley> bsmith: I don't suppose you have an updated eta on being able to look at bug 761987?
  2433. # [19:30] * Quits: ferjm (ferjm@moz-23947203.red-88-0-242.dynamicip.rima-tde.net) (Quit: Leaving)
  2434. # [19:31] * Joins: espindola (espindola@F2D29657.F60B0462.67AC9B1.IP)
  2435. # [19:31] <joe> jlebar: ping
  2436. # [19:32] * Quits: biesi__ (cbiesinger@moz-48E61CD.snc1.tfbnw.net) (Ping timeout)
  2437. # [19:32] <benjamin> bsmedberg: red on inbound
  2438. # [19:32] <jlebar> joe: hey
  2439. # [19:32] <joe> jlebar: remember icons not setting the cursorX and cursorY on the Image?
  2440. # [19:32] <joe> what bug was that?
  2441. # [19:32] <joe> (it was just recent)
  2442. # [19:33] * joduinn is now known as joduinn-phone
  2443. # [19:33] <jlebar> joe: I don't remember, actually...cursorX?
  2444. # [19:33] <joe> hotspotX hotspotY
  2445. # [19:33] <joe> sorry wrong name
  2446. # [19:33] * Joins: tanvi (tanvi@2557E599.66715431.D25A875A.IP)
  2447. # [19:33] * overholt|afk is now known as overholt
  2448. # [19:33] * Joins: azakai (alon@2557E599.66715431.D25A875A.IP)
  2449. # [19:33] <jlebar> joe: still not ringing a bell...
  2450. # [19:33] <joe> ok
  2451. # [19:33] <joe> perhaps it was not you
  2452. # [19:34] * Quits: hurley (hurley@moz-E76806A0.dsl.static.sonic.net) (Ping timeout)
  2453. # [19:34] <jlebar> joe: sorry. :-/
  2454. # [19:34] <edmorley> billm: is bug 819443 still supposed to be open after the 3 csets merge?
  2455. # [19:34] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2456. # [19:34] <joe> my real question is though
  2457. # [19:35] <edmorley> billm: wasn't sure if the [leave open] was meant to be removed after the 3rd one landed
  2458. # [19:35] <joe> how does do_CreateInstance("@mozilla.org/properties;1"); in RasterImage work
  2459. # [19:35] <joe> considering that absolutely nothing creates that as far as mxr knows
  2460. # [19:35] * hwine|afk is now known as hwine
  2461. # [19:35] <jlebar> lol
  2462. # [19:35] <joe> we even have a frigging test for this
  2463. # [19:35] <joe> i don't understand
  2464. # [19:36] * Joins: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net)
  2465. # [19:36] <jlebar> joe: also imgRequest...
  2466. # [19:36] <joe> yep
  2467. # [19:36] <jlebar> joe: But nobody uses NS_PROPERTIES_CONTRACTID, so yeah, that does not look real.
  2468. # [19:37] <jlebar> joe: do you want to find where it was removed?
  2469. # [19:37] * Quits: ekr (ekr@moz-E43B1A40.lax.megapath.net) (Quit: ekr)
  2470. # [19:37] <joe> ehsan: http://hg.mozilla.org/mozilla-central/rev/109e402b0b24
  2471. # [19:37] <joe> how in god's name does this test pass
  2472. # [19:37] <joe> jlebar: yeah
  2473. # [19:37] * jlebar runs git log -S
  2474. # [19:37] <jlebar> One moment, please.
  2475. # [19:37] <joe> FINALLY a use for hg grep
  2476. # [19:38] * Joins: hurley (hurley@moz-E76806A0.dsl.static.sonic.net)
  2477. # [19:40] <@ehsan> joe: pardon?
  2478. # [19:40] <joe> ehsan: as far as I can tell mImage.set("hotspotX") has no effect
  2479. # [19:40] <@ehsan> joe: I don't see what you mean...
  2480. # [19:40] <joe> because mProperties is going to be null
  2481. # [19:40] <joe> because nothing defines @mozilla.org/properties;1
  2482. # [19:40] * Joins: vtmarvin (Thunderbir@9D75911A.1239134F.E4B2C495.IP)
  2483. # [19:41] <@ehsan> joe: I don't see @mozilla.org/properties;1 there...
  2484. # [19:41] <@ehsan> joe: nor do I se a .set call
  2485. # [19:41] <joe> ehsan: i'm talking about the underlying code
  2486. # [19:41] <joe> it's getting something that shouldn't exist
  2487. # [19:41] <joe> var props should be null there
  2488. # [19:41] <@ehsan> joe: oh, ok, I just followed your instructions to write that test :)
  2489. # [19:41] <jlebar> joe: still searching...
  2490. # [19:41] <joe> yeah
  2491. # [19:41] <@ehsan> and it passed locally
  2492. # [19:41] <joe> i am very confused
  2493. # [19:41] <@ehsan> joe: sorry if I did something bad
  2494. # [19:42] <joe> no it's okay
  2495. # [19:42] * @ehsan doesn't know what's going on here
  2496. # [19:42] * armenzg_mtg is now known as armenzg
  2497. # [19:43] * jimm-lunch is now known as jimm
  2498. # [19:43] * Quits: yzen (Adium@67828CC7.C1A51174.9D42CF23.IP) (Ping timeout)
  2499. # [19:43] <@bsmedberg> FML, did that happen with the review nit?
  2500. # [19:43] <@bsmedberg> yes it did
  2501. # [19:43] <glandium> joe: there is a use for hg grep?
  2502. # [19:43] <@bsmedberg> backout coming
  2503. # [19:44] <edmorley> bsmedberg: have just pushed
  2504. # [19:44] <@bsmedberg> edmorley: oh thanks
  2505. # [19:44] <joe> glandium: well if this ever finishes
  2506. # [19:44] * Joins: erikvold (erikvold@moz-ED8F8190.wireless.telus.com)
  2507. # [19:44] <edmorley> bsmedberg: np
  2508. # [19:44] * Joins: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP)
  2509. # [19:44] <glandium> joe: what are you using it for?
  2510. # [19:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/85d46df9a125 - Ed Morley - Backout 4ebd50016f35 & 9033700cc24f (bug 807757) for failing to build on a CLOSED TREE
  2511. # [19:44] <joe> glandium: I want to know when something stopped being used
  2512. # [19:44] * jcranmer sits down and returns to his mozilla/Atomics patch
  2513. # [19:44] * Joins: yzen (Adium@EA83C0CE.A6295926.9D42CF23.IP)
  2514. # [19:44] <joe> (presuming it was ever used)
  2515. # [19:45] <jlebar> joe: Well...this is quite slow.
  2516. # [19:46] <glandium> joe: ah, yeah, you probably wanna do that with git... hg is going to take forever
  2517. # [19:46] <joe> jlebar is doing it with git
  2518. # [19:46] <glandium> (and even with git it might take long)
  2519. # [19:46] <jlebar> We're racing, I guess.
  2520. # [19:46] <joe> my laptop is starting to get warm
  2521. # [19:46] * jlebar goes to get a snack
  2522. # [19:47] * Joins: cjones (cjones@moz-45913895.socal.res.rr.com)
  2523. # [19:48] <espindola> jrmuizel: any pointers to the new register allocator?
  2524. # [19:48] * Joins: KWierso|Surface (~KWiersoSu@2557E599.66715431.D25A875A.IP)
  2525. # [19:48] <jrmuizel> espindola: bug #814966
  2526. # [19:48] <espindola> jrmuizel: thanks
  2527. # [19:49] * joduinn-phone is now known as joduinn
  2528. # [19:49] * Quits: tzimmermann (tzimmerman@moz-FD157AC9.pools.arcor-ip.net) (Quit: Ex-Chat)
  2529. # [19:50] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  2530. # [19:51] * capella is now known as capella|mall
  2531. # [19:51] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2532. # [19:51] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2533. # [19:51] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  2534. # [19:51] * catlee is now known as catlee-afk
  2535. # [19:52] * Joins: pcwalton (pcwalton@43CB6079.66715431.D25A875A.IP)
  2536. # [19:52] <edmorley> mbrubeck: do you own https://github.com/mozilla/tbpl ?
  2537. # [19:52] * glob is now known as glob|away
  2538. # [19:52] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2539. # [19:52] <jlebar> joe: bug 568691
  2540. # [19:53] * Joins: ehugg (chatzilla@CE3BE0DD.29102B70.6CD50604.IP)
  2541. # [19:53] <sankha93> tbsaunde: is there any specific reason that we should not use nsVoidArrayComparator for that Sort function?
  2542. # [19:53] * Quits: dzbarsky (Adium@A2CDE42E.80B7983C.B5B6DD03.IP) (Quit: Leaving.)
  2543. # [19:53] <jlebar> joe: part A
  2544. # [19:53] <joe> so hm
  2545. # [19:53] <jlebar> joe: search for NS_PROPERTIES
  2546. # [19:54] <jlebar> I think, maybe.
  2547. # [19:54] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  2548. # [19:54] * glob|away is now known as glob
  2549. # [19:54] <Mook_as> jlebar: http://mxr.mozilla.org/mozilla-central/source/xpcom/build/XPCOMModule.inc#16 ?
  2550. # [19:54] * rail is now known as rail-lunch
  2551. # [19:54] <joe> i wonder how that works
  2552. # [19:55] * Quits: Mossop (mossop@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2553. # [19:55] <jlebar> Gah, I hate macros designed so you can't search for stuff.
  2554. # [19:55] <jlebar> They might as well require us to rot13 the names.
  2555. # [19:55] <Mook_as> via, umm, http://mxr.mozilla.org/mozilla-central/source/xpcom/build/nsXPComInit.cpp#278 I guess?
  2556. # [19:55] <WeirdAl> mccr8: ping, re nsCycleCollectionParticipant.h... two things
  2557. # [19:55] <jlebar> Mook_as++
  2558. # [19:55] <mccr8> WeirdAl: sure
  2559. # [19:55] * Quits: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2560. # [19:56] <mbrubeck> edmorley: no, hadn't seen that before
  2561. # [19:56] * Quits: KWierso|Surface (~KWiersoSu@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2562. # [19:56] <edmorley> mbrubeck: oh, ok
  2563. # [19:56] <edmorley> maybe rhelmer?
  2564. # [19:56] <edmorley> https://github.com/mozilla/tbpl
  2565. # [19:56] <rhelmer> what's up?
  2566. # [19:56] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2567. # [19:56] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2568. # [19:57] * Joins: Mossop (mossop@2557E599.66715431.D25A875A.IP)
  2569. # [19:57] <edmorley> rhelmer: is that your repo?
  2570. # [19:57] * Joins: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP)
  2571. # [19:57] <rhelmer> edmorley: oh yeah, i started it but didn't catch on :) used hg-git
  2572. # [19:57] <rhelmer> edmorley: it's a bit out of date
  2573. # [19:57] <edmorley> rhelmer: could we delete it please
  2574. # [19:57] <rhelmer> edmorley: sure
  2575. # [19:57] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2576. # [19:57] <edmorley> rhelmer: great thank you :-)
  2577. # [19:58] <joe> jlebar: http://i.qkme.me/3s6jpu.jpg
  2578. # [19:58] * Quits: @ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP) (Connection reset by peer)
  2579. # [19:58] * Joins: ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP)
  2580. # [19:58] * ChanServ sets mode: +o ehsan
  2581. # [19:58] * Quits: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net) (Client exited)
  2582. # [19:58] <edmorley> rhelmer: we now have tbpl at https://hg.mozilla.org/webtools/tbpl/ and I just noticed that github repo whilst searching for wiki links to update
  2583. # [19:58] <rhelmer> edmorley: ok there you go sorry for the confusino
  2584. # [19:59] <edmorley> rhelmer: no problem at all :-)
  2585. # [19:59] * sheeri is now known as sheeri-lunch
  2586. # [19:59] * Quits: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  2587. # [19:59] <joe> ehsan: so in short, my worry is wrong, it's just that due to macro pasting you can't search for the relevant part
  2588. # [19:59] * Quits: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2589. # [19:59] <joe> and now I can go back to what I was actually doing
  2590. # [20:00] * Quits: azakai (alon@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2591. # [20:00] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2592. # [20:01] * Joins: azakai (alon@2557E599.66715431.D25A875A.IP)
  2593. # [20:01] * Joins: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP)
  2594. # [20:01] * Quits: jammink (textual@2557E599.66715431.D25A875A.IP) (Quit: Computer has gone to sleep.)
  2595. # [20:01] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  2596. # [20:01] * Quits: erikvold (erikvold@moz-ED8F8190.wireless.telus.com) (Quit: erikvold)
  2597. # [20:01] <joe> are our hash tables (or nsIProperties) multithread-safe?
  2598. # [20:01] <@khuey> no
  2599. # [20:01] * catlee-afk is now known as catlee
  2600. # [20:01] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2601. # [20:02] <joe> sadface
  2602. # [20:02] <@khuey> and the *MT versions are probably useless too
  2603. # [20:02] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  2604. # [20:02] <@khuey> you need a lock
  2605. # [20:02] <joe> yeah
  2606. # [20:02] * Joins: erikvold (erikvold@moz-ED8F8190.wireless.telus.com)
  2607. # [20:02] <joe> i'll just do the cleaner thing
  2608. # [20:02] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2609. # [20:02] * Joins: cilias (cilias@moz-D8CAF7D8.cpe.net.cable.rogers.com)
  2610. # [20:02] <WeirdAl> first, last night the NS_IMPL_CYCLE_COLLECTION_8 macro was being used in one place; this morning none, but I have a patch with r+/sr+ to land which will be using it... is anyone planning on removing it?
  2611. # [20:02] <WeirdAl> mccr8: ^^
  2612. # [20:03] * sheppy-lunch is now known as sheppy
  2613. # [20:03] <mccr8> WeirdAl: Nope, no reason to remove it.
  2614. # [20:03] <@ehsan> joe: cool
  2615. # [20:03] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2616. # [20:03] <WeirdAl> good.
  2617. # [20:04] * Quits: beaufour (beaufour@moz-DC1D9B4C.nycmny.fios.verizon.net) (Quit: beaufour)
  2618. # [20:04] * Joins: erick_ (erick@E1304535.2A7189BF.BE19388.IP)
  2619. # [20:04] <jrmuizel> ehsan: ping
  2620. # [20:05] <WeirdAl> mccr8: secondly, has anyone thought about taking everything from NS_IMPL_CYCLE_COLLECTION_0 down and making that generated code via a Python script?
  2621. # [20:05] * Quits: erick_ (erick@E1304535.2A7189BF.BE19388.IP) (Quit: Changing server)
  2622. # [20:05] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2623. # [20:05] <WeirdAl> it's a lot of boilerplate...
  2624. # [20:05] <@ehsan> jrmuizel: hey
  2625. # [20:05] * Quits: erikvold (erikvold@moz-ED8F8190.wireless.telus.com) (Ping timeout)
  2626. # [20:05] <mccr8> WeirdAl: no, I don't think so. That whole file is generally a giant pile of tears. ;)
  2627. # [20:06] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2628. # [20:06] <jrmuizel> ehsan: do you know what the class has the mContent pointer declaration for nsFrames?
  2629. # [20:06] <jrmuizel> what class
  2630. # [20:06] * Joins: jammink (textual@2557E599.66715431.D25A875A.IP)
  2631. # [20:06] <WeirdAl> mccr8: hehe... well, if you think it's worth doing, I'll gladly write up a patch.
  2632. # [20:06] <@ehsan> jrmuizel: nsFrame?
  2633. # [20:06] <@ehsan> jrmuizel: or nsIFrame
  2634. # [20:06] <@ehsan> jrmuizel: do you want me to look?
  2635. # [20:06] <jrmuizel> ehsan: if you want
  2636. # [20:06] * jlebar is now known as jlebar|lunch
  2637. # [20:06] <@ehsan> ok
  2638. # [20:07] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2639. # [20:07] <mccr8> WeirdAl: my main concern is how it would affect the build process, as that file is included basically everywhere.
  2640. # [20:07] * Quits: cviecco (cviecco@2557E599.66715431.D25A875A.IP) (Input/output error)
  2641. # [20:07] <@ehsan> jrmuizel: nsIFrame
  2642. # [20:07] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2643. # [20:07] <@ehsan> jrmuizel: why are you asking?
  2644. # [20:07] <jrmuizel> ehsan: curiosity
  2645. # [20:07] <WeirdAl> mccr8: yeah, I know - my thinking is we'd generate the objdir's version of that header file from a python script running on the srcdir version
  2646. # [20:07] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2647. # [20:07] <@ehsan> ok
  2648. # [20:08] * geekboy is now known as geekboy|afk
  2649. # [20:08] * Joins: cviecco (cviecco@2557E599.66715431.D25A875A.IP)
  2650. # [20:08] <WeirdAl> everything above that line would be the same
  2651. # [20:08] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2652. # [20:09] <WeirdAl> an export-phase operation
  2653. # [20:09] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2654. # [20:09] * Quits: cviecco (cviecco@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2655. # [20:10] * Quits: lizzard (ehenry@moz-606E6FC0.dsl.static.sonic.net) (Quit: lizzard)
  2656. # [20:10] <mccr8> WeirdAl: Yeah, I don't know. It doesn't sound like a bad idea, but code gen is gross in its own way, so it might be somewhat of a side grade. ;)
  2657. # [20:11] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  2658. # [20:11] <WeirdAl> *shrug* how hard is it to maintain the existing code? I wish I didn't have to use _8, but if we ever need a _9, or a _10, it's going to be annoying
  2659. # [20:12] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2660. # [20:13] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2661. # [20:14] <Waldo> WeirdAl: what's the _8 and so on referring to? we have variadic macros these days, to an approximation (we need to disable warnings for them, but we have them), so possibly _# could be removed in places now
  2662. # [20:14] * Joins: cviecco (cviecco@2557E599.66715431.D25A875A.IP)
  2663. # [20:14] <WeirdAl> Waldo: https://mxr.mozilla.org/mozilla-central/source/xpcom/glue/nsCycleCollectionParticipant.h#902 - my latest SAX patch requires that. It wasn't required two weeks ago...
  2664. # [20:14] * Joins: till (till@moz-FF275973.web.vodafone.de)
  2665. # [20:15] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  2666. # [20:15] <WeirdAl> (meaning there was other boilerplate which this replaced)
  2667. # [20:15] <Waldo> it should be possible to make a variadic NS_IMPL_CYCLE_COLLECTION which works for a fixed set of arities
  2668. # [20:15] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  2669. # [20:15] <Waldo> not that the implementation wouldn't look horrendous
  2670. # [20:15] <Waldo> but it could be done
  2671. # [20:16] <@khuey> r-
  2672. # [20:16] <WeirdAl> yeah, I remember those lovely QUERY_INTERFACE_IMPL macros... :p
  2673. # [20:17] <WeirdAl> or whatever they were called
  2674. # [20:17] * @smaug wonders why people are suddenly so interested in CC macros
  2675. # [20:17] * Joins: jedp (jedp@moz-59C58F81.dsl.dynamic.sonic.net)
  2676. # [20:17] * Quits: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: jet)
  2677. # [20:17] <@smaug> perhaps everybody have realized how awesome CC is :)
  2678. # [20:17] * Joins: nrc (nrc@4B76F2B0.D05BE748.613E47D1.IP)
  2679. # [20:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bcc487178c04 - Bill McCloskey - Bug 816064 - Assert against NULL objects in deferred release (r=mccr8)
  2680. # [20:18] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2681. # [20:18] <WeirdAl> smaug: I'm just thinking those macros take up a lot of space that a Python script could generate easily... and that adding new sets of macros would be easy with a script instead of hardcoding it
  2682. # [20:18] <@smaug> what python script?
  2683. # [20:19] <tbsaunde> smaug: it'd be nice if wrapper cache macros worked for nsISupports things :)
  2684. # [20:19] <jesup> Because they're a hard-to-understand mess for someone who doesn't fully 100% grok their usage :-)
  2685. # [20:19] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2686. # [20:19] <WeirdAl> smaug: one we write :)
  2687. # [20:19] <jedp> hi, peeps - i'm trying to brew install gmp on osx 10.8, and it's complaining that /usr/local/lib/libgmp.dylib was "built for unsupported file format" - has anyone installed the gmp bignum library on osx?
  2688. # [20:19] <WeirdAl> it doesn't exist yet
  2689. # [20:19] <tbsaunde> smaug: and I believethey will with my patch :)
  2690. # [20:19] <@smaug> WeirdAl: and how would it integrate with the existing stuff?
  2691. # [20:20] <@smaug> tbsaunde: you mean non-nsISupports
  2692. # [20:20] <WeirdAl> sorry, have to step off for a bit
  2693. # [20:20] <tbsaunde> smaug: err, yes
  2694. # [20:20] <@smaug> tbsaunde: btw, thanks for making those macros better :)
  2695. # [20:21] <tbsaunde> smaug: np
  2696. # [20:23] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  2697. # [20:24] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2698. # [20:24] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2699. # [20:24] * Joins: Boriss (FlyingToas@moz-A1B956CE.zone16.bethere.co.uk)
  2700. # [20:24] * jwir3|lunch is now known as jwir3
  2701. # [20:24] * Quits: @roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  2702. # [20:24] * Joins: lizzard (ehenry@moz-606E6FC0.dsl.static.sonic.net)
  2703. # [20:25] <snorp> not updating: path contains illegal component: /pymake/tests/native-touch.mk
  2704. # [20:25] <snorp> anyone seen the above from hg?
  2705. # [20:25] <dholbert> snorp, yes
  2706. # [20:25] <snorp> how do I fix?
  2707. # [20:25] <dholbert> snorp, assuming you don't have any local changes that you'd be blowing away, fix with:
  2708. # [20:25] * Quits: ferongr (ferongr@moz-F1E95145.dyn.edudsl.gr) (Ping timeout)
  2709. # [20:25] <dholbert> hg up -C -r default
  2710. # [20:26] * Joins: cpeterson (cpeterson@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2711. # [20:26] * sheeri-lunch is now known as sheeri
  2712. # [20:26] <snorp> cool
  2713. # [20:28] <@khuey> edmorley: have you seen a noticeable increase in test timeouts lately?
  2714. # [20:28] * Quits: Boriss (FlyingToas@moz-A1B956CE.zone16.bethere.co.uk) (Ping timeout)
  2715. # [20:29] <WeirdAl> smaug: that's a tbd
  2716. # [20:29] <WeirdAl> it's just an idea I had
  2717. # [20:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d3171bd3585c - Kartikaya Gupta - Bug 821224 - Don't recycle a bitmap that may be the same object as one we are still using. r=sriram
  2718. # [20:29] <edmorley> khuey: on OS X, yes
  2719. # [20:29] <@khuey> edmorley: interesting
  2720. # [20:29] <edmorley> khuey: the 330 seconds without output one
  2721. # [20:30] <@khuey> edmorley: happening across a variety of tests?
  2722. # [20:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/437aa90c4fe7 - James Willcox - Bug 820905 - backout ea1643fd4285
  2723. # [20:30] * Joins: rednaks (rednaks@58F5E81.4D9C3D65.55FFA9B4.IP)
  2724. # [20:30] <@smaug> WeirdAl: also, using python is always -- ;)
  2725. # [20:31] <WeirdAl> riiiiiiiiiiiiiiiiiiiiiiiiiiight :)
  2726. # [20:31] * Joins: brendan (brendaneic@2557E599.66715431.D25A875A.IP)
  2727. # [20:31] <@khuey> smaug: take your perl back to the 90s where it belongs
  2728. # [20:32] <WeirdAl> on another note - do we have a XPCOM:Streams guide, like we did for XPCOM:Strings?
  2729. # [20:32] <edmorley> khuey: last 2 weeks http://bit.ly/TdOSLQ
  2730. # [20:32] <@smaug> khuey: I live in the past, present and future. I'd like to see codegen scripts written in JS
  2731. # [20:33] <@khuey> edmorley: interesting
  2732. # [20:33] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6c224e817390 - Nathan Froyd - Bug 748520 - persist failed telemetry pings for possible re-sending later; r=vdjeric
  2733. # [20:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/cc544979aeaa - Nathan Froyd - Bug 748520 - persist failed telemetry pings for possible re-sending later; r=vdjeric
  2734. # [20:33] <@khuey> smaug: I joked once that we should use pymake to build the js engine and then jsmake to replace pymake for the rest of the tree
  2735. # [20:33] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/84bba6bf11bb - James Willcox - Bug 820905 - backout ea1643fd4285 a=bajaj
  2736. # [20:33] <@khuey> edmorley: I caught 820476 in a VM
  2737. # [20:33] <@khuey> edmorley: and it looks like a necko problem that's dropping notifications on the floor
  2738. # [20:33] * @khuey wonders if these are related
  2739. # [20:33] <edmorley> oh
  2740. # [20:33] <edmorley> cool
  2741. # [20:34] * Joins: tomer (tomer@7AF4670C.A2C54A10.FC30AC02.IP)
  2742. # [20:34] * @khuey digs
  2743. # [20:34] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2744. # [20:35] * jcranmer is now known as jcranmer|away
  2745. # [20:35] * Joins: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP)
  2746. # [20:35] * AutomatedTester|away is now known as AutomatedTester
  2747. # [20:36] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/020555b69f72 - Ehsan Akhgari - Bug 818732 - Switch Nightly to per-window private browsing; r=jdm
  2748. # [20:36] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2749. # [20:37] <froydnj> ehsan: \o/
  2750. # [20:37] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/90b2c0cb4a91 - Nathan Froyd - Bug 820889 - convert PendingBinding to use mozilla::LinkedList; r=dholbert
  2751. # [20:37] * Quits: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net) (Ping timeout)
  2752. # [20:38] * Quits: terrence (terrence@moz-7109B35.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  2753. # [20:38] <@ehsan> froydnj: :)
  2754. # [20:38] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2755. # [20:39] * gregglind is now known as gregglind-afk
  2756. # [20:39] * Joins: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net)
  2757. # [20:39] <dholbert> snorp, what platform are you on (where you hit that native-touch path issue)?
  2758. # [20:39] <snorp> dholbert: mac
  2759. # [20:39] <jaws> ehsan: can you back out the pb patch on ux branch?
  2760. # [20:39] <snorp> dholbert: btw thanks, that fixed it
  2761. # [20:40] <@ehsan> jaws: don't you merge from central to ux?
  2762. # [20:40] <dholbert> snorp, np
  2763. # [20:40] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/02a0cad51a22 - Steve Workman - Bug 820596 - Defend against nullptr calls to mDecoderStateMachine and mReentrantMonitor r=cpearce
  2764. # [20:40] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  2765. # [20:40] <jaws> ehsan: yeah i do, just trying to reduce merge conflicts
  2766. # [20:40] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5b6583b20a80 - Steve Workman - Bug 816726 - Add seeking capabilities to DASH-WebM code r=cpearce
  2767. # [20:40] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e7b09b636bbf - Steve Workman - Bug 816726 - Return timestamp in nestegg_get_cue_point to support DASH-WebM Seeking r=kinetik
  2768. # [20:40] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c926d32f8ace - Steve Workman - Bug 820588 - Aggregate and forward statistics in DASH decoder classes r=cpearce
  2769. # [20:40] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  2770. # [20:40] <@ehsan> jaws: hmm, why would there be a merge conflict?
  2771. # [20:41] <@ehsan> both sides will be the same :)
  2772. # [20:41] * Joins: unknown (chatzilla@moz-1363F65F.residential.rdsnet.ro)
  2773. # [20:41] <jaws> ok
  2774. # [20:41] * Quits: unknown (chatzilla@moz-1363F65F.residential.rdsnet.ro) (Quit: ChatZilla 0.9.89 [Firefox 16.0.2/20121024073032])
  2775. # [20:41] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Max SendQ exceeded)
  2776. # [20:43] * juanb is now known as juanb|afk
  2777. # [20:44] * jhopkins|buildduty is now known as jhopkins|bbiab
  2778. # [20:45] * Quits: nrc (nrc@4B76F2B0.D05BE748.613E47D1.IP) (Ping timeout)
  2779. # [20:45] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2780. # [20:45] * Quits: azakai (alon@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2781. # [20:47] * jdm|busy is now known as jdm
  2782. # [20:48] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2783. # [20:49] * Quits: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP) (Ping timeout)
  2784. # [20:49] * Joins: terrence (terrence@2557E599.66715431.D25A875A.IP)
  2785. # [20:49] * rail-lunch is now known as rail
  2786. # [20:52] * joduinn is now known as joduinn-commute
  2787. # [20:52] * Joins: sankha93 (Mibbit@7061CD01.D6BD0D91.22D41759.IP)
  2788. # [20:52] <sankha93> bz: yes. I did the tests
  2789. # [20:52] * Quits: gcp (gcp@moz-D0E475EA.access.telenet.be) (Quit: Leaving)
  2790. # [20:52] * Joins: gcp (gpascutto@moz-D0E475EA.access.telenet.be)
  2791. # [20:52] <@bz> sankha93: and they pased?
  2792. # [20:52] <@bz> er, passed?
  2793. # [20:52] * @bz is a little surprised
  2794. # [20:52] * Joins: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP)
  2795. # [20:52] <sankha93> yes. 5 showed TEST_UNEXPCTED_PASS
  2796. # [20:53] <sankha93> but they were relatedto webgl
  2797. # [20:53] <@bz> I'm not worried about those
  2798. # [20:53] * merike|away is now known as merike
  2799. # [20:53] <@bz> I'm surprised that getting fillStyle works. I guess we end up going through the new-binding codepath there.....
  2800. # [20:53] * Joins: bent (chatzilla@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2801. # [20:54] <sankha93> so there is some problem?
  2802. # [20:55] * Joins: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net)
  2803. # [20:56] * Quits: Dhruv (Dhruv@DDE598E9.EE67E8C2.388CF16F.IP) (Quit: Leaving.)
  2804. # [20:57] <sankha93> ^bz
  2805. # [20:57] * Quits: brendan (brendaneic@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  2806. # [20:57] * Joins: brendan_ (brendaneic@2557E599.66715431.D25A875A.IP)
  2807. # [20:57] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  2808. # [20:57] * Joins: Mano (mano@76E70B2D.DBB5E440.39716721.IP)
  2809. # [20:57] * Quits: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP) (Connection reset by peer)
  2810. # [20:58] * Joins: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP)
  2811. # [20:58] * Quits: brendan_ (brendaneic@2557E599.66715431.D25A875A.IP) (Quit: brendan_)
  2812. # [20:58] * Joins: sankha931 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  2813. # [20:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2a929d0c5233 - Gregor Wagner - Bug 821417 - PhoneNumberJS: fix startup warnings. r=bent
  2814. # [20:58] * Quits: sankha93 (Mibbit@7061CD01.D6BD0D91.22D41759.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2815. # [20:58] * Quits: sankha931 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Quit: Leaving.)
  2816. # [20:59] * Joins: brendan (brendaneic@2557E599.66715431.D25A875A.IP)
  2817. # [20:59] <@smaug> espindola: ping
  2818. # [20:59] <@smaug> espindola: perhaps you have some feedback to Bug 818739
  2819. # [20:59] <@smaug> espindola: I'm interested to know how late we do still some i/o
  2820. # [20:59] * espindola looks
  2821. # [21:00] <espindola> smaug: in the wild I don't know.
  2822. # [21:00] * nthomas|away is now known as nthomas
  2823. # [21:00] * Joins: azakai (alon@2557E599.66715431.D25A875A.IP)
  2824. # [21:00] <espindola> I remember that moving write poisoning one line bac
  2825. # [21:00] <espindola> k
  2826. # [21:00] * Joins: andreasn (andreasn@moz-FD3F641F.a336.priv.bahnhof.se)
  2827. # [21:00] * Joins: willyaranda (willyarand@moz-C58FBBBB.dynamic.jazztel.es)
  2828. # [21:00] <espindola> before nsCycleCollector_shutdown
  2829. # [21:00] <espindola> would hit a write
  2830. # [21:00] <@bz> sankha93: if we have test coverage for this, and you ran the tests, then presumably there is no problem...
  2831. # [21:01] * Quits: brendan (brendaneic@2557E599.66715431.D25A875A.IP) (Quit: brendan)
  2832. # [21:01] <espindola> smaug: and that is ignoring things like nss writing the nss database
  2833. # [21:01] <espindola> certdb
  2834. # [21:01] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4cc6db74ba94 - Wan-Teh Chang - Bug 816392: merge.
  2835. # [21:01] <espindola> even if it is not modified
  2836. # [21:01] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b742eb97e66a - Wan-Teh Chang - Bug 816392: Update NSS to NSS_3_14_1_RC0.
  2837. # [21:01] * Joins: sankha93 (Mibbit@7061CD01.D6BD0D91.22D41759.IP)
  2838. # [21:01] <@smaug> espindola: well, what tries to do some write during cc shutdown?
  2839. # [21:01] <@smaug> since it is a bug
  2840. # [21:01] * Quits: kdcw (kdc@moz-F7413045.pk.shawcable.net) (Quit: HydraIRC -> http://www.hydrairc.com <- Po-ta-to, boil em, mash em, stick em in a stew.)
  2841. # [21:02] <espindola> smaug: I don't remember, sorry
  2842. # [21:02] <@smaug> espindola: would it be hard to re-run the test?
  2843. # [21:02] <espindola> initially the exit(0) idea was to fix all those bugs, and then do exit(0)
  2844. # [21:02] <espindola> smaug: very easy, move the poisoning one line early
  2845. # [21:02] <espindola> build with deubg
  2846. # [21:02] * Joins: ericb2 (X@moz-9C4C3DED.fbx.proxad.net)
  2847. # [21:02] <espindola> start and close firefox will crash it I think
  2848. # [21:02] <@smaug> espindola: does that poisoning work in linux?
  2849. # [21:02] <@smaug> there are no comments what that poisoning is about
  2850. # [21:02] <espindola> smaug: no, OS X only so far
  2851. # [21:03] <@smaug> ok, I can't do it then
  2852. # [21:03] <espindola> sorry, we have a bug for windows, but it hasn't been fixed yet
  2853. # [21:03] <espindola> I can do it if you want
  2854. # [21:03] <espindola> and put a stack in a bug
  2855. # [21:03] <@smaug> espindola: that would be useful
  2856. # [21:03] <@smaug> since it is a bug
  2857. # [21:04] <@smaug> nothing should rely on writing any important data in dtor
  2858. # [21:04] <espindola> smaug: anything you want me to comment on 818739?
  2859. # [21:04] <espindola> ok, will do that
  2860. # [21:04] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2861. # [21:04] <@smaug> espindola: if you get a stack, file a new bug and make it block that bug
  2862. # [21:04] <espindola> ok
  2863. # [21:04] * geekboy|afk is now known as geekboy
  2864. # [21:04] <@smaug> espindola: thanks!
  2865. # [21:05] * geekboy is now known as geekboy|afk
  2866. # [21:05] * Quits: bsmith (bsmith@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2867. # [21:07] * Joins: brendan (brendaneic@2557E599.66715431.D25A875A.IP)
  2868. # [21:07] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a41d57f01020 - Terrence Cole - Bug 816776 - Add debug-mode exact rooting assertions for Shape; r=sfink
  2869. # [21:08] * jhammel is now known as jhammel|lunch
  2870. # [21:09] * Quits: cpearce (cpearce@moz-9EEA206C.xdsl.xnet.co.nz) (Ping timeout)
  2871. # [21:10] * Quits: lightsofapollo (jlal@moz-ACAEA2CB.hsd1.ca.comcast.net) (Quit: lightsofapollo)
  2872. # [21:11] * Joins: himsin (x@432E449C.6FDFB4BE.1957C0DA.IP)
  2873. # [21:12] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2874. # [21:12] * Quits: sankha93 (Mibbit@7061CD01.D6BD0D91.22D41759.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2875. # [21:13] * Quits: ehugg_lime (ehugg_lime@moz-3605680.mycingular.net) (Client exited)
  2876. # [21:13] * Quits: @smaug (chatzilla@moz-78A86AC.pp.htv.fi) (Ping timeout)
  2877. # [21:13] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  2878. # [21:14] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2879. # [21:14] <Ms2ger> edmorley, thanks, tbpl repo updated :)
  2880. # [21:15] * Quits: jammink (textual@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2881. # [21:16] * Joins: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  2882. # [21:16] * ChanServ sets mode: +o roc
  2883. # [21:16] * NeilAway is reminded that he has two patches to check into the tbpl repo
  2884. # [21:16] * jedp is now known as jedp|noms
  2885. # [21:16] <catlee> so, what are the rules for landing on b2g18?
  2886. # [21:16] <edmorley> NeilAway: ah yes, meant to ping you earlier to ask if you wanted me to check them in
  2887. # [21:16] <catlee> and then, what other branches do I need to land on?
  2888. # [21:17] <edmorley> NeilAway: the repo has just moved to https://hg.mozilla.org/webtools/tbpl/ btw
  2889. # [21:17] * Quits: rhelmer (rhelmer@moz-59682A1.dmz.scl3.mozilla.com) (Ping timeout)
  2890. # [21:17] * armenzg is now known as armenzg_brb
  2891. # [21:18] <NeilAway> avih/jrmuizel: the count is needed at the C++ side, but it can be made optional for JS
  2892. # [21:18] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  2893. # [21:18] * Joins: jammink (textual@2557E599.66715431.D25A875A.IP)
  2894. # [21:18] <tbsaunde> so, what is this dash thing?
  2895. # [21:18] * jedp|noms is now known as jedp
  2896. # [21:18] <NeilAway> avih/jrmuizel: I would make the the count the second last parameter though
  2897. # [21:18] * joduinn-commute is now known as joduinn-food
  2898. # [21:19] * glob is now known as glob|away
  2899. # [21:19] <NeilAway> nemo: I can't wait to find a truetype mandelbrot font ;-)
  2900. # [21:20] * Quits: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2901. # [21:20] * jhopkins|bbiab is now known as jhopkins|buildduty
  2902. # [21:20] * Joins: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP)
  2903. # [21:21] <NeilAway> edmorley: thanks for the heads-up
  2904. # [21:21] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2905. # [21:21] <edmorley> yw
  2906. # [21:21] * NeilAway had to fix hgrc anyway
  2907. # [21:21] * Quits: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP) (Client exited)
  2908. # [21:23] * ctalbert|mtg is now known as ctalbert|afk
  2909. # [21:24] * Joins: dveditz (dveditz@moz-CA4FEF00.hsd1.ca.comcast.net)
  2910. # [21:24] * ChanServ sets mode: +o dveditz
  2911. # [21:24] <@bz> Is there a bug about all the nsIDOMHTMLElement::GetProperties warnings?
  2912. # [21:24] <Ms2ger> Which?
  2913. # [21:24] * Quits: Optimizer (Optimizer@B0463667.7E183FDB.D5D59AD9.IP) (Ping timeout)
  2914. # [21:25] <jhammel|lunch> NeilAway: when you do find such a font....lemme know ;)
  2915. # [21:25] * Joins: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net)
  2916. # [21:25] * Quits: bajaj (Adium@2557E599.66715431.D25A875A.IP) (Quit: Leaving.)
  2917. # [21:26] <@bz> Ms2ger: ../../../dist/include/nsIDOMHTMLElement.h:74:60: note: hidden overloaded virtual function 'nsIDOMHTMLElement::GetProperties' declared here
  2918. # [21:26] <@bz> virtual __attribute__ ((visibility ("hidden"))) nsresult GetProperties(nsIDOMHTMLPropertiesCollection * *aProperties) = 0;
  2919. # [21:26] <@bz> ../../../dist/include/nsHTMLVideoElement.h:31:3502: warning: 'nsHTMLVideoElement::GetProperties' hides overloaded virtual function [-Woverloaded-virtual]
  2920. # [21:27] <@bz> That line is: 31 NS_FORWARD_NSIDOMHTMLELEMENT_TO_GENERIC
  2921. # [21:27] <@bz> 1664 NS_IMETHOD GetProperties(nsISupports** aReturn) \
  2922. # [21:27] * Joins: cpearce (cpearce@538BABFE.A073F3E.97BBD552.IP)
  2923. # [21:27] <@bz> 1665 MOZ_FINAL { \
  2924. # [21:27] <@bz> (inside the macro)
  2925. # [21:27] * Joins: Optimizer (Optimizer@18CC39CD.BB157126.D2D1FAF0.IP)
  2926. # [21:28] <@bz> Oh, hmm
  2927. # [21:28] <@bz> Maybe I need to rebuild that IDL?
  2928. # [21:28] <Ms2ger> mach claims I don't see that warning
  2929. # [21:28] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2930. # [21:28] * @bz rebuilds in dom/interfaces/html
  2931. # [21:28] <NeilAway> dholbert: hey, you're getting to help people with illegal path components :-)
  2932. # [21:28] <@bz> Yeah, looks like that was it
  2933. # [21:29] <gps> Ms2ger: mach currently swallows some warnings
  2934. # [21:29] <Waldo> ...
  2935. # [21:29] <Ms2ger> gps, while you're here, I'd like a better way to get warnings-by-type than ./mach warnings-list | grep "overloaded-virtual"
  2936. # [21:29] * hwine is now known as hwine-food
  2937. # [21:30] * Quits: brendan (brendaneic@2557E599.66715431.D25A875A.IP) (Quit: brendan)
  2938. # [21:30] <gps> Ms2ger: patches welcome :)
  2939. # [21:30] <Ms2ger> Bah :)
  2940. # [21:30] <rstrong> ahal: re: bug 821343 - could you scan TestAUSHelper.cpp to see if it is ok for gonk http://mxr.mozilla.org/mozilla-central/source/toolkit/mozapps/update/test/TestAUSHelper.cpp
  2941. # [21:30] * Quits: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net) (Connection reset by peer)
  2942. # [21:30] * Joins: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP)
  2943. # [21:31] * Joins: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net)
  2944. # [21:31] <dholbert> NeilAway, yeah! it happened again :) not sure why... it's mysterious
  2945. # [21:32] <ahal> rstrong: so I actually don't know anything about xpcshell or those tests :) .. :bbondy might be the better person to ask
  2946. # [21:32] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2947. # [21:33] * Ms2ger looks for Enn
  2948. # [21:33] * Quits: vtmarvin (Thunderbir@9D75911A.1239134F.E4B2C495.IP) (Ping timeout)
  2949. # [21:33] * Joins: mw22 (chatzilla@moz-AF369B35.adsl.online.nl)
  2950. # [21:33] * Quits: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP) (Ping timeout)
  2951. # [21:33] * Quits: gustavold (gustavold@9FF57A6A.27C9FAA1.6535E70B.IP) (Ping timeout)
  2952. # [21:34] <rstrong> ahal: I know about that code (bbondy is part of my team and is out today and tomorrow). That is a c++ helper for the xpcshell tests and it is ifdef'd to not compile on gonk at present but is required by these xpcshell tests
  2953. # [21:34] * Quits: c0smikdebris (textual@5FECAACD.D8228D1D.BE90E62C.IP) (Quit: Textual IRC Client: www.textualapp.com)
  2954. # [21:34] * Joins: capella-s3 (capella-s3@moz-A19EA65E.pools.spcsdns.net)
  2955. # [21:34] * Joins: gustavold (gustavold@9FF57A6A.27C9FAA1.6535E70B.IP)
  2956. # [21:34] * Quits: yury (yury@moz-68731345.ok.ok.cox.net) (Ping timeout)
  2957. # [21:34] * Joins: yury (yury@moz-68731345.ok.ok.cox.net)
  2958. # [21:35] <rstrong> ahal: would you mind if I pushed to cedar to see if it does compile?
  2959. # [21:35] * Joins: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP)
  2960. # [21:35] * Joins: marco (Thunderbir@moz-7A65583B.cust.dsl.teletu.it)
  2961. # [21:36] * Quits: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se) (Ping timeout)
  2962. # [21:36] * Quits: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP) (Ping timeout)
  2963. # [21:36] * jhammel|lunch is now known as |-|_|
  2964. # [21:36] * jcranmer|away is now known as jcranmer
  2965. # [21:36] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2fc7800b9847 - Henrik Skupin - Bug 796888 - Create Mochitest for Video only connection (connect/disconnect). r=jesup
  2966. # [21:37] <ahal> rstrong: ah I see. Sure go ahead
  2967. # [21:38] <ahal> rstrong: they're actually also on try (just hidden until inbound gets merged to m-c next)
  2968. # [21:38] * Joins: ericjung_ (ericjung@moz-F14FA912.bstnma.fios.verizon.net)
  2969. # [21:38] * Quits: gandalf (zbraniecki@moz-4F155DA6.hsd1.ca.comcast.net) (Quit: I took the wrong pill!!!)
  2970. # [21:38] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  2971. # [21:38] <rstrong> ahal: thanks! I'll go for try then
  2972. # [21:39] * Quits: ericjung_ (ericjung@moz-F14FA912.bstnma.fios.verizon.net) (Connection reset by peer)
  2973. # [21:39] * Joins: nrc (nrc@538BABFE.A073F3E.97BBD552.IP)
  2974. # [21:40] <ahal> rstrong: just ignore the test_dbgsocket.js error and "libc: Fatal signal 7" stuff if you do
  2975. # [21:40] <edmorley> jdm: unstarred m-c failure
  2976. # [21:41] <|-|_|> M-C Failure? I saw him in concert
  2977. # [21:41] <|-|_|> it was a disaster
  2978. # [21:42] <dholbert> |-|_|++
  2979. # [21:42] * |-|_| is now known as jhammel
  2980. # [21:42] * Joins: jaws_ (jwein@moz-DB8FBC31.hsd1.mi.comcast.net)
  2981. # [21:42] <jaws_> if an element has anonymous children, how can i append a child to the element without removing the anonymous children?
  2982. # [21:42] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  2983. # [21:43] * Joins: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se)
  2984. # [21:44] * Quits: RRubbyy (chatzilla@54C6415.7A4CB892.FE1E5C3A.IP) (Ping timeout)
  2985. # [21:44] * Quits: yury (yury@moz-68731345.ok.ok.cox.net) (Ping timeout)
  2986. # [21:44] * Joins: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net)
  2987. # [21:44] * Joins: yury (yury@moz-68731345.ok.ok.cox.net)
  2988. # [21:45] * lizzard is now known as lizzard-afk
  2989. # [21:45] <jdm> edmorley: fwiw, there's no glaring causation that I see
  2990. # [21:45] * Quits: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net) (Ping timeout)
  2991. # [21:46] * Joins: espadrine (thaddee_ty@moz-3DA6FFFF.dclient.lsne.ch)
  2992. # [21:46] <edmorley> jdm: yeah I know, but tree rules apply to mozilla-central ;-)
  2993. # [21:46] <jdm> edmorley: should I just file it?
  2994. # [21:46] <edmorley> quick-search the top frame
  2995. # [21:46] * Joins: rhelmer (rhelmer@moz-59682A1.dmz.scl3.mozilla.com)
  2996. # [21:46] <edmorley> there are a bazillion of them
  2997. # [21:46] * Quits: yury (yury@moz-68731345.ok.ok.cox.net) (Quit: Quit)
  2998. # [21:46] <edmorley> find the one that has space in the summary, add the test name, paste the url :-)
  2999. # [21:47] <jdm> heh
  3000. # [21:47] * Joins: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net)
  3001. # [21:47] * rhelmer is now known as IRCMonkey39418
  3002. # [21:47] <edmorley> unfortunately until recently robocop crashes were still green, so there are quite a few shaking loose now
  3003. # [21:48] * IRCMonkey39418 is now known as rhelmer_
  3004. # [21:48] * Joins: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP)
  3005. # [21:48] * Joins: hub (hub@CAB30FBD.8F96AEA7.2D179A7D.IP)
  3006. # [21:49] * Quits: himsin (x@432E449C.6FDFB4BE.1957C0DA.IP) (Quit: Leaving)
  3007. # [21:49] * juanb|afk is now known as juanb
  3008. # [21:49] * armenzg_brb is now known as armenzg
  3009. # [21:49] * Quits: jimm (jmathies@moz-7F164CA1.pn.at.cox.net) (Quit: )
  3010. # [21:49] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  3011. # [21:50] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  3012. # [21:50] * Quits: Optimizer (Optimizer@18CC39CD.BB157126.D2D1FAF0.IP) (Ping timeout)
  3013. # [21:51] * Quits: marco (Thunderbir@moz-7A65583B.cust.dsl.teletu.it) (Quit: marco)
  3014. # [21:52] * Parts: kats-wfh (kats@moz-7A4332AD.compute-1.amazonaws.com)
  3015. # [21:52] * merike is now known as merike|away
  3016. # [21:52] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  3017. # [21:52] * Quits: armenzg (armenzg@moz-ED3249A4.dmz.releng.scl3.mozilla.com) (Ping timeout)
  3018. # [21:52] * Joins: armenzg (armenzg@moz-ED3249A4.dmz.releng.scl3.mozilla.com)
  3019. # [21:53] * Quits: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121128204232])
  3020. # [21:53] * Joins: yury (yury@moz-68731345.ok.ok.cox.net)
  3021. # [21:53] * Quits: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se) (Ping timeout)
  3022. # [21:53] <edmorley> jdm: thank you :-)
  3023. # [21:53] <jdm> thanks for the heads-up!
  3024. # [21:53] * @bz accidentally writes infinite build-time loop, is alerted by fan noise
  3025. # [21:54] * Quits: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP) (Quit: lmandel)
  3026. # [21:54] <@khuey> heh
  3027. # [21:54] * Joins: Optimizer (Optimizer@16E614F9.11B621B0.274D17D6.IP)
  3028. # [21:55] * Joins: jimm_ (jmathies@moz-7F164CA1.pn.at.cox.net)
  3029. # [21:55] * jimm_ is now known as jimm
  3030. # [21:56] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  3031. # [21:56] * Quits: FabioMagnoni_ (fabiomagno@926368C8.33C6581A.B65F468E.IP) (Quit: FabioMagnoni_)
  3032. # [21:56] <jaws_> :)
  3033. # [21:56] * Quits: lizzard-afk (ehenry@moz-606E6FC0.dsl.static.sonic.net) (Quit: lizzard-afk)
  3034. # [21:57] * Joins: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP)
  3035. # [21:57] * Quits: past (Instantbir@moz-4160552A.dsl.dyn.forthnet.gr) (Quit: past)
  3036. # [21:58] * jmaher is now known as jmaher|afk
  3037. # [21:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/072da0be4236 - Josh Matthews - Bug 769288 - Part 5: Close private socket connections when the lsat private browsing instance dies. r=bsmith,mcmanus
  3038. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d9336f8c0f6c - Josh Matthews - Bug 769288 - Part 7: Use separate SSL session cache entries for private connections. r=mayhemer
  3039. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b6d87e6d9a7e - Ehsan Akhgari - Merge mozilla-central into mozilla-inbound
  3040. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/38cd815da29a - Josh Matthews - Bug 769288 - Part 3: Clear all temporary cert overrides upon leaving private browsing. r=bsmith
  3041. # [21:59] * jlebar|lunch is now known as jlebar
  3042. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/761ff8b47a4e - Josh Matthews - Bug 769288 - Part 6: Remove global private browsing NSS cleanup on exit. r=ehsan
  3043. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/020555b69f72 - Ehsan Akhgari - Bug 818732 - Switch Nightly to per-window private browsing; r=jdm
  3044. # [21:59] * Joins: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3045. # [21:59] * Joins: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP)
  3046. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ee2822d2eab9 - Josh Matthews - Bug 769288 - Part 4: Clear SSL session cache upon leaving private browsing. r=bsmith
  3047. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9e9281ce1b63 - Josh Matthews - Bug 769288 - Part 1: Make PSM more amenable to storing concurrent private and non-private data. r=bsmith
  3048. # [21:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a80ec6b90878 - Josh Matthews - Bug 769288 - Part 2: Avoid storing intermediate cert data for private contexts. r=bsmith sr=mayhemer
  3049. # [22:00] * bnicholson is now known as bnicholson|lunch
  3050. # [22:00] <@ehsan> nthomas: ping
  3051. # [22:00] * Quits: mreavy (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net) (Ping timeout)
  3052. # [22:00] <nthomas> ehsan: pong
  3053. # [22:00] <@ehsan> hi
  3054. # [22:00] * Joins: longsonr (chatzilla@moz-200DDFDC.bethere.co.uk)
  3055. # [22:00] <nthomas> hi, ready for the birch updates switcheroo ?
  3056. # [22:00] * Quits: capella-s3 (capella-s3@moz-A19EA65E.pools.spcsdns.net) (Ping timeout)
  3057. # [22:00] <@ehsan> yeah
  3058. # [22:00] <@ehsan> so I removed the channel-prefs.js exclusion
  3059. # [22:01] * Joins: dzbarsky (Adium@moz-107E3F8F.wireless-pennnet.upenn.edu)
  3060. # [22:01] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/795545029135 - Kartikaya Gupta - Bug 816164 - Gzip the crash report data when posting it to the server. r=cpeterson
  3061. # [22:01] <@ehsan> not sure how to change the mozconfig now
  3062. # [22:01] * Joins: mreavy (chatzilla@moz-D0297AE3.phlapa.fios.verizon.net)
  3063. # [22:01] * mattwoodrow|away is now known as mattwoodrow
  3064. # [22:01] * Quits: longsonr (chatzilla@moz-200DDFDC.bethere.co.uk) (Quit: ChatZilla 0.9.89 [Firefox 17.0/20121119183901])
  3065. # [22:02] <nthomas> in browser/config/mozconfigs/*/nightly/ change |ac_add_options --enable-update-channel=${MOZ_UPDATE_CHANNEL}| to |ac_add_options --enable-update-channel=nightly|
  3066. # [22:03] <@ehsan> nthomas: ok, done
  3067. # [22:03] <@ehsan> what's next?
  3068. # [22:05] <nthomas> I'll disable updates for birch, you land and trigger some nightly builds
  3069. # [22:05] <@ehsan> nthomas: ok I have landed the patches
  3070. # [22:05] <@ehsan> shall I trigger nightlies right now?
  3071. # [22:07] <nthomas> sure, go ahead
  3072. # [22:07] <nthomas> they look fine
  3073. # [22:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ea2a1011fdb5 - Mike Conley - Bug 820533 - Change Downloads Summary string from "+X other current downloads" to "+ X other downloads". r=mak.
  3074. # [22:08] <@ehsan> nthomas: done, thnaks!
  3075. # [22:09] <nthomas> ehsan: I'll put some steps on the bug for how to verify the channel is being changed once the nightlies are done
  3076. # [22:09] <@ehsan> ty
  3077. # [22:10] * Quits: kaie (kaie@moz-A5723291.dip.t-dialin.net) (Quit: Leaving)
  3078. # [22:11] * Quits: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP) (Client exited)
  3079. # [22:11] * capella|mall is now known as capella
  3080. # [22:12] * Joins: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP)
  3081. # [22:12] * Joins: spohl1 (Adium@moz-4EB1AD80.lightspeed.sntcca.sbcglobal.net)
  3082. # [22:12] * Quits: spohl (Adium@moz-4EB1AD80.lightspeed.sntcca.sbcglobal.net) (Connection reset by peer)
  3083. # [22:13] * Joins: biesi (cbiesinger@559BF46C.6B10AC3.E2F59BBC.IP)
  3084. # [22:13] * Joins: johanc (chatzilla@moz-8E1A9E8E.bredband.comhem.se)
  3085. # [22:13] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  3086. # [22:14] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3087. # [22:14] * Quits: atte (atte@moz-401E92F1.dhcp.inet.fi) (Connection reset by peer)
  3088. # [22:16] * lightsofapollo is now known as lightsofapollo|afk
  3089. # [22:16] <mjrosenb> hey, has anyone else had issues with their 10.1 tabs not powering on?
  3090. # [22:17] * Quits: lightsofapollo|afk (jlal@moz-47879D6C.hsd1.ca.comcast.net) (Connection reset by peer)
  3091. # [22:17] <sfink> mjrosenb: yes. Leaving it on the charger for 24 hours and trying again fixed mine.
  3092. # [22:17] * Joins: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net)
  3093. # [22:17] * Quits: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP) (Ping timeout)
  3094. # [22:17] * Joins: gandalf (zbraniecki@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3095. # [22:18] <mjrosenb> sfink: and it didn't power on while just attached to the charger?
  3096. # [22:18] * Quits: lightsofapollo (jlal@moz-47879D6C.hsd1.ca.comcast.net) (Quit: lightsofapollo)
  3097. # [22:18] <sfink> mjrosenb: no. Acted totally dead.
  3098. # [22:18] <mjrosenb> man, bittorrent is pissing off my internet connection
  3099. # [22:18] * Joins: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP)
  3100. # [22:18] <mjrosenb> sfink: good to know. I'll poke it again tomorrow.
  3101. # [22:19] <sfink> limit the upload rate. That seems way more important than download rate for mine. Not sure why, except maybe it saturates faster?
  3102. # [22:19] * Quits: @roc (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Client exited)
  3103. # [22:20] * Joins: RyanVM (RyanVM@moz-148999FE.phlapa.fios.verizon.net)
  3104. # [22:21] * Quits: KWierso|V (chatzilla@2557E599.66715431.D25A875A.IP) (Ping timeout)
  3105. # [22:21] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Quit: davidb)
  3106. # [22:21] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  3107. # [22:22] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Ping timeout)
  3108. # [22:22] * ctalbert|afk is now known as ctalbert
  3109. # [22:23] <kentuckyfriedtakahe> how do I resolve the native-touch.mk issue?
  3110. # [22:23] * Joins: jet (junglecode@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3111. # [22:25] <Ms2ger> <dholbert> snorp, assuming you don't have any local changes that you'd be blowing away, fix with:
  3112. # [22:25] <Ms2ger> <dholbert> hg up -C -r default
  3113. # [22:25] <Ms2ger> kentuckyfriedtakahe, ^
  3114. # [22:25] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  3115. # [22:25] <kentuckyfriedtakahe> Ms2ger: sweet. that seemed to work.
  3116. # [22:25] <qpalzm> can you recommend some ways to visualize and grasp easier through the codebase? others than call graphs
  3117. # [22:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d40e4d1abffd - Nathan Froyd - Bug 821324 - actually return a success value from replaceFileIfChanged; r=bz
  3118. # [22:26] * Quits: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net) (Ping timeout)
  3119. # [22:26] * Quits: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP) (Ping timeout)
  3120. # [22:29] * Joins: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net)
  3121. # [22:29] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  3122. # [22:29] * geekboy|afk is now known as geekboy
  3123. # [22:30] * Quits: rednaks (rednaks@58F5E81.4D9C3D65.55FFA9B4.IP) (Quit: Quitte)
  3124. # [22:31] * Quits: willyaranda (willyarand@moz-C58FBBBB.dynamic.jazztel.es) (Quit: willyaranda)
  3125. # [22:31] <NeilAway> jaws_: use a binding that knows where the children should go
  3126. # [22:32] <froydnj> bz: thanks for the reviews!
  3127. # [22:32] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  3128. # [22:33] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d0dca968428b - Andres Hernandez - Bug 806733 - Port test_sts_preloadlist.js to the new per-window PB APIs; r=ehsan
  3129. # [22:34] <mjrosenb> sfink: upload rate is and has been 0.
  3130. # [22:34] <NeilAway> tbsaunde: hmm, you should have taken the opportunity to put in an assertion if anyone passes an nsISupportsArray to the window watcher
  3131. # [22:34] * Joins: enda (chatzilla@moz-6D0FD3FC.cisco.com)
  3132. # [22:34] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2d2e54c90ae0 - Jason Smith - bug 799419 - crashtest for 2 peer connections create and close with fake video. r=jesup
  3133. # [22:34] <edmorley> billm: this to do with the asserts you added? https://tbpl.mozilla.org/php/getParsedLog.php?id=17916706&tree=Firefox
  3134. # [22:35] * Quits: joey (chatzilla@moz-EFCB4CBF.princetowncable.com) (Quit: ChatZilla 0.9.89 [Firefox 19.0a2/20121210042017])
  3135. # [22:35] * hwine-food is now known as hwine
  3136. # [22:35] <espindola> BenWa: can you comment on 821403? We probably want data from one week or so before your change landed, right?
  3137. # [22:35] <tbsaunde> NeilAway: hm, in reference to what?
  3138. # [22:35] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  3139. # [22:36] * Quits: espindola (espindola@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  3140. # [22:36] * Joins: dao (dao@moz-DE32E385.superkabel.de)
  3141. # [22:36] <tbsaunde> NeilAway: there's a bunch of gecko code that still uses nsISupportsArrays to do something with the window watcher / window creation :( its on my todo list, but after the existing stuff settles some I think
  3142. # [22:36] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  3143. # [22:36] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  3144. # [22:37] <billm> edmorley: no, I don't think so. that's a crash, not an assert. please file.
  3145. # [22:37] <NeilAway> tbsaunde: right, but can't we at least warn when somebody does that?
  3146. # [22:37] * Quits: RealRaven (Thunderbir@D219CF1E.7F246BAB.C3498625.IP) (Client exited)
  3147. # [22:37] <edmorley> billm: ah sorry, I just saw assertValidThread in the top frame (eating dinner so hasn't gotten as far as looking at the log)
  3148. # [22:37] * Joins: willyaranda (willyarand@moz-C58FBBBB.dynamic.jazztel.es)
  3149. # [22:38] <billm> edmorley: thanks for pointing it out though
  3150. # [22:38] <tbsaunde> NeilAway: I don't see why not
  3151. # [22:38] <NeilAway> edmorley: hmm, I don't suppose you know a handy query for "open bugs that I have reviewed patches waiting for check in on"?
  3152. # [22:38] * Joins: pnemsak (Miranda@moz-192A9791.orange.sk)
  3153. # [22:38] <tbsaunde> NeilAway: I can guess it should be hard to write a patch, think you can review that stuff?
  3154. # [22:39] * Quits: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net) (Quit: Leaving.)
  3155. # [22:39] <NeilAway> paul: my patch compiles but I would appreciate it if you could test it and finish it off
  3156. # [22:39] <NeilAway> tbsaunde: I guess so
  3157. # [22:39] <jhammel> eh, i'm pretty sure the compiler would catch any problems ;)
  3158. # [22:40] <NeilAway> jhammel: hey, I didn't even say that it links ;-)
  3159. # [22:40] * Quits: pnemsak (Miranda@moz-192A9791.orange.sk) (Quit: pnemsak)
  3160. # [22:40] * Quits: sheppy (sheppy@moz-B52B0B26.dhcp.kgpt.tn.charter.com) (Quit: NO CARRIER)
  3161. # [22:40] * Joins: pnemsak (Miranda@moz-192A9791.orange.sk)
  3162. # [22:41] <edmorley> NeilAway: I don't have any saved searches for that, but I think you can achieve it using advanced "flags contains the string review+" perhaps?
  3163. # [22:41] * Quits: nmatsakis (nmatsakis@43CB6079.66715431.D25A875A.IP) (Quit: Computer has gone to sleep.)
  3164. # [22:42] <NeilAway> edmorley: ok I'll give it a whirl
  3165. # [22:42] * Quits: pnemsak (Miranda@moz-192A9791.orange.sk) (Quit: pnemsak)
  3166. # [22:42] * Joins: pnemsak (Miranda@moz-192A9791.orange.sk)
  3167. # [22:42] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  3168. # [22:43] <sawrubh> ehsan: jdm is it time for \o/ ?
  3169. # [22:43] <jdm> looks like it
  3170. # [22:43] * Joins: vtmarvin (Thunderbir@9D75911A.1239134F.E4B2C495.IP)
  3171. # [22:43] <sawrubh> *drumroll* \o/ *drumroll*
  3172. # [22:44] * sawrubh goes to pull his tree
  3173. # [22:44] * jdm files another orange
  3174. # [22:44] * Joins: MrDHat (chatzilla@71F46A80.65450A6E.85BF2EFC.IP)
  3175. # [22:45] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/cc19d255d351 - Nathan Froyd - Bug 821317 - reduce the size of DOMClass.mInterfaceChain to something reasonable; r=bz
  3176. # [22:47] <@ehsan> nthomas: the second part in https://bugzilla.mozilla.org/show_bug.cgi?id=819857#c9 is for when birch nightlies are built, right?
  3177. # [22:47] * Joins: lizzard (ehenry@moz-606E6FC0.dsl.static.sonic.net)
  3178. # [22:47] * Joins: till_ (till@moz-FF275973.web.vodafone.de)
  3179. # [22:48] * Quits: till (till@moz-FF275973.web.vodafone.de) (Connection reset by peer)
  3180. # [22:48] <nthomas> ehsan: yep
  3181. # [22:48] * Quits: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net) (Ping timeout)
  3182. # [22:48] <@ehsan> cool
  3183. # [22:48] <@ehsan> nthomas: do I also need to trigger central nightlies?
  3184. # [22:48] <nthomas> don't know yet
  3185. # [22:49] <nthomas> is it worth it ? I'd just wait a day
  3186. # [22:49] * Joins: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net)
  3187. # [22:49] <nthomas> I can modify the snippets so we can still do the QA
  3188. # [22:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/11341616d7cb - John Schoenick - Bug 767633 - Part 3 - Remove a ton of obsolete nsPluginHost code. r=josh
  3189. # [22:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/62389ec6712c - John Schoenick - Bug 767633 - Bonus - Clean up whitespace in nsPluginHost. r=josh
  3190. # [22:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9631d28a19c3 - John Schoenick - Bug 767638 - Greatly simplify loading full-page plugins. r=josh
  3191. # [22:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/35e4ec23293c - John Schoenick - Bug 767638 - Rename InitializeEmbedded* plugin functions to just Initialize*. r=josh
  3192. # [22:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1b68ff48e22c - John Schoenick - Bug 767633 - Part 2 - nsObjectLoadingContent should handle all initial streams for plugins. r=josh
  3193. # [22:50] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a2476e368fb6 - John Schoenick - Bug 767633 - Part 4 - nsObjectLoadingContent - Don't erroneously decide state changed because the channel went away. r=josh
  3194. # [22:50] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6aed5f5caecb - John Schoenick - Bug 767633 - Part 1 - Cleanup nsObjectLoadingContent logic a bit. r=josh
  3195. # [22:50] <johns> That is not at all the order those were pushed in, firebot!
  3196. # [22:50] * Quits: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Quit: mkaply)
  3197. # [22:50] <@ehsan> nthomas: no I'm not in a rush...
  3198. # [22:51] <nthomas> ok
  3199. # [22:54] * Joins: njn (chatzilla@EAB453D1.66A1342A.2CC906FD.IP)
  3200. # [22:54] * Joins: nmatsakis (nmatsakis@43CB6079.66715431.D25A875A.IP)
  3201. # [22:54] <tbsaunde> NeilAway: so, is there any reason / difference between passing the window watcher a nsISupportsArray and a nsIArray?
  3202. # [22:54] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  3203. # [22:55] * Joins: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  3204. # [22:55] * ChanServ sets mode: +o roc
  3205. # [22:55] * Quits: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net) (Ping timeout)
  3206. # [22:56] * Quits: ericb2 (X@moz-9C4C3DED.fbx.proxad.net) (Quit: Success !!)
  3207. # [22:57] * Quits: vingtetun (vingtetun@moz-F8747CC6.dsl.ovh.fr) (Ping timeout)
  3208. # [22:57] * Quits: enda (chatzilla@moz-6D0FD3FC.cisco.com) (Quit: ChatZilla 0.9.88.1 [Firefox 16.0.2/20121024073032])
  3209. # [22:57] * Quits: Ms2ger (Ms2ger@7FACCFF6.C48AF8ED.187A1082.IP) (Quit: nn)
  3210. # [22:57] * Quits: Mardak (Mardak@2557E599.66715431.D25A875A.IP) (Quit: Mardak)
  3211. # [22:57] * Quits: Goldorak (chatzilla@7CD1B470.2BC633E3.88CF6591.IP) (Quit: ChatZilla 0.9.89-rdmsoft [XULRunner 1.9.0.17/2009122204])
  3212. # [22:58] * bc is now known as bc|afk
  3213. # [22:58] * Parts: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  3214. # [22:58] * joduinn-food is now known as joduinn-mtg
  3215. # [22:59] * Quits: lizzard (ehenry@moz-606E6FC0.dsl.static.sonic.net) (Quit: lizzard)
  3216. # [22:59] * Joins: lizzard (ehenry@moz-606E6FC0.dsl.static.sonic.net)
  3217. # [23:00] * Joins: brendan (brendaneic@2557E599.66715431.D25A875A.IP)
  3218. # [23:00] * Joins: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net)
  3219. # [23:00] * kmoir is now known as kmoir-afk
  3220. # [23:01] * Quits: kmoir-afk (chatzilla@moz-F9973AAD.cpe.net.cable.rogers.com) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121128204232])
  3221. # [23:01] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  3222. # [23:01] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  3223. # [23:01] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c603d181b69e - Neil Rashbrook - Bug 819154 Clean up string usage in Android Bridge r=blassey
  3224. # [23:02] * Quits: ahal (ahal@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  3225. # [23:02] * Joins: lightsofapollo (jlal@moz-ACAEA2CB.hsd1.ca.comcast.net)
  3226. # [23:02] <NeilAway> tbsaunde: well, window watcher predated nsIArray, so...
  3227. # [23:02] * Quits: msucan (mihai@CDEB00D4.8819A7BF.BD62875.IP) (Quit: Leaving.)
  3228. # [23:02] * Parts: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP)
  3229. # [23:03] <mjrosenb> 1516240896 bytes (1.5 GB) copied, 159.78 s, 9.5 MB/s
  3230. # [23:03] <mjrosenb> 1454+0 records in
  3231. # [23:03] <mjrosenb> 1454+0 records out
  3232. # [23:03] <mjrosenb> 1524629504 bytes (1.5 GB) copied, 737.896 s, 2.1 MB/s
  3233. # [23:03] <mjrosenb> that is not good...
  3234. # [23:03] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  3235. # [23:03] * Quits: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net) (Ping timeout)
  3236. # [23:04] * Joins: jlmendezbonini (textual@165221BD.79F288FD.B6CE6C5C.IP)
  3237. # [23:05] <@ehsan> bz: btw, did you make any progress on bug 565388?
  3238. # [23:06] <@bz> ehsan: I haven't had a chance to yet
  3239. # [23:06] <@ehsan> ok
  3240. # [23:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/55b2d38ac36c - Boris Zbarsky - Bug 820862. JSJitInfo should say what sort of function it is. r=jandem
  3241. # [23:06] <@bz> ehsan: still staring at this audio data stuff, for one thing.
  3242. # [23:06] * Quits: jlmendezbonini (textual@165221BD.79F288FD.B6CE6C5C.IP) (Quit: Textual IRC Client: www.textualapp.com)
  3243. # [23:06] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/66f91a854410 - Boris Zbarsky - Bug 820902. nsAttrValue::Equals should do ASCII-case-insensitive compares when it's doing case-insensitive compares. r=sicking
  3244. # [23:06] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/865b57171950 - Boris Zbarsky - Bug 820862. JSJitInfo should say what sort of function it is. r=jandem, a=akeybl
  3245. # [23:07] <@bz> ehsan: and fielding questions from various people. :(
  3246. # [23:07] <@ehsan> heh
  3247. # [23:07] <@bz> ehsan: and dealing with some non-work stuff. :(
  3248. # [23:07] <@ehsan> bz: it's ok...
  3249. # [23:07] <@ehsan> just wanted to check
  3250. # [23:07] * Joins: Mardak (Mardak@2557E599.66715431.D25A875A.IP)
  3251. # [23:07] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  3252. # [23:07] <tbsaunde> NeilAway: sure, but my question is is there any thing one needs to be careful of or can you just do s/nsISupportsArray/nsIArray/ and be done to convert stuff to use nsIArray with the window watcher?
  3253. # [23:08] * Quits: qpalzm (ck@C7C05874.E84ECEF3.3376CD77.IP) (Client exited)
  3254. # [23:08] <@bz> ehsan: I'm not sure it's ok, but it is what it is...
  3255. # [23:08] <NeilAway> bah, lost another push race
  3256. # [23:09] <rnewman> I'm seeing inbound build failing. 26:46.90 /Users/rnewman/moz/hg/mozilla-inbound/security/manager/ssl/src/nsNSSComponent.cpp:1879: error: return-statement with a value, in function returning 'void'
  3257. # [23:09] <NeilAway> tbsaunde: I don't think so, you just need to stuff your parameters into an nsIMutableArray instead of an nsISupportsArray
  3258. # [23:09] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b80437be0e70 - Till Schneidereit - Bug 820390 - Implement AutoHashMapRooter and AutoObjectObjectHashMap. r=terrence
  3259. # [23:09] <@ehsan> rnewman: might be jdm's fault
  3260. # [23:09] <tbsaunde> NeilAway: ok, that's what I sort of thought, but that code isn't eactly straight forward
  3261. # [23:10] <jdm> hmm?
  3262. # [23:10] * coop is now known as coop|afk
  3263. # [23:10] <rnewman> ehsan: there's a backout in `hg in` (my pull is a few hours old), so trying again
  3264. # [23:10] * Quits: yzen (Adium@EA83C0CE.A6295926.9D42CF23.IP) (Quit: Leaving.)
  3265. # [23:10] <rnewman> will let you know in half an hour :)
  3266. # [23:12] * Quits: Optimizer (Optimizer@16E614F9.11B621B0.274D17D6.IP) (Ping timeout)
  3267. # [23:12] * Joins: aditya (aditya@59C36E61.B4B229A5.34AA0C06.IP)
  3268. # [23:12] * Quits: rbgray (chatzilla@moz-F1171FD7.plustechnologies.com) (Ping timeout)
  3269. # [23:13] * Quits: wolfiR (wolfiR@moz-F46C8C72.dip0.t-ipconnect.de) (Quit: Leaving)
  3270. # [23:13] * glob|away is now known as glob
  3271. # [23:13] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/afc699fc7e65 - Matt Woodrow - Bug 820246 - Split nsDisplayCanvasBackground into separate color and image items. r=roc
  3272. # [23:13] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/777fd91b7fda - Matt Woodrow - Bug 821477 - Don't build nsDisplay{Canvas}BackgroundImage items when the image is empty. r=roc
  3273. # [23:14] * bwinton is now known as bwinton_away
  3274. # [23:14] * till_ is now known as till
  3275. # [23:15] * Joins: yzen (Adium@EA83C0CE.A6295926.9D42CF23.IP)
  3276. # [23:16] * Joins: UCC (Thunderbir@moz-1363F65F.residential.rdsnet.ro)
  3277. # [23:16] * Joins: armenzg_ (armenzg@moz-ED3249A4.dmz.releng.scl3.mozilla.com)
  3278. # [23:16] <seth> anyone know how can i run a single xpcshell test?
  3279. # [23:16] * Quits: Mardak (Mardak@2557E599.66715431.D25A875A.IP) (Quit: Mardak)
  3280. # [23:16] * Quits: armenzg (armenzg@moz-ED3249A4.dmz.releng.scl3.mozilla.com) (Ping timeout)
  3281. # [23:16] * Joins: Optimizer (Optimizer@B5EDA3CF.E772AAF5.D2D1FAF0.IP)
  3282. # [23:16] * Joins: vingtetun (vingtetun@moz-F8747CC6.dsl.ovh.fr)
  3283. # [23:16] * Quits: yzen (Adium@EA83C0CE.A6295926.9D42CF23.IP) (Quit: Leaving.)
  3284. # [23:16] <jdm> seth: SOLO_FILE and check-one/check-interactive
  3285. # [23:16] <jlebar> kanru: Do you still want this bug, now that it has nothing to do with wake locks?
  3286. # [23:17] <mak> my Mac builds are failing on an "undefined symbol(s) for architecture x86_64: nsIDOMCSSStyleDeclaration::GetPtopertyCSSValue...". Any idea what's up? A full clobber (removing the objdir) doesn't work.
  3287. # [23:17] <@gavin> GetPtopertyCSSValue? is that a typo?
  3288. # [23:18] <seth> jdm: that's what i thought based on the wiki, but i haven't gotten it to work...
  3289. # [23:18] <mak> yes, my typo
  3290. # [23:18] <seth> SOLO_FILE=image/test/unit/test_async_notification_404.js make -C obj check-one
  3291. # [23:18] <seth> make: *** No rule to make target `check-one'. Stop.
  3292. # [23:18] <seth> ^^^ this is what afflicts me. sorry for spam
  3293. # [23:19] <mak> gavin: btw, basically I can't build anymore, not sure if the recent xcode upgrade is involved...
  3294. # [23:19] <rstrong> seth: try SOLO_FILE=image/test/unit/test_async_notification_404.js make -C image/test check-one
  3295. # [23:19] <jdm> seth: yeah, unless mochitests you need -C obj/path/to/test/but/not/unit
  3296. # [23:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/fb65298e7117 - Kartikaya Gupta - Bug 816551 - Make PluginHelper._getBindingType return null. r=margaret
  3297. # [23:19] * ehsan is now known as ehsan|brb
  3298. # [23:20] <seth> jdm/rstrong: ah yes, that's it! -C obj/image/test works
  3299. # [23:20] <seth> thanks!
  3300. # [23:20] <rstrong> seth: actually SOLO_FILE=test_async_notification_404.js make -C image/test check-one
  3301. # [23:20] <rstrong> right
  3302. # [23:20] * Quits: victorporof (victorporo@87CAE4F1.BEB908B0.79933D60.IP) (Quit: victorporof)
  3303. # [23:21] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/726a464c40d6 - ffxbld - Added FENNEC_18_0b4_RELEASE FENNEC_18_0b4_BUILD2 tag(s) for changeset 0fbab071e381. DONTBUILD CLOSED TREE a=release
  3304. # [23:22] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/0fbab071e381 - ffxbld - Automated checkin: version bump for fennec 18.0b4 release. DONTBUILD CLOSED TREE a=release
  3305. # [23:22] * Quits: jfkthame (jfkthame@1C457759.3AD06A77.86F5061.IP) (Quit: jfkthame)
  3306. # [23:23] * Quits: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  3307. # [23:24] <paul> NeilAway: ok
  3308. # [23:24] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3309. # [23:24] * Quits: milan (milan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  3310. # [23:24] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7cfc4ad935b1 - Brian Hackett - Bug 821216 - Don't trigger off thread compilation with no threads available, r=dvander.
  3311. # [23:25] <kanru> jlebar: yeah, I could do it. But first I need to know how to do it.
  3312. # [23:25] * Quits: vtmarvin (Thunderbir@9D75911A.1239134F.E4B2C495.IP) (Client exited)
  3313. # [23:25] <jlebar> kanru: sicking and baku know; I don't know anything about that API myself.
  3314. # [23:25] <jlebar> kanru: baku may be a better person to do the bug, if he has time. I don't know if he does, though.
  3315. # [23:25] <sicking> kanru: you should look at the AudioChannelService
  3316. # [23:26] * Quits: UCC (Thunderbir@moz-1363F65F.residential.rdsnet.ro) (Quit: UCC)
  3317. # [23:26] <sicking> kanru: it tracks which audio sources are active
  3318. # [23:26] * Joins: UCC (Thunderbir@moz-1363F65F.residential.rdsnet.ro)
  3319. # [23:26] <sicking> kanru: it has a childprocess part and a parent process part
  3320. # [23:26] * Joins: maligree (maligree@moz-73468007.ssp.dialog.net.pl)
  3321. # [23:26] * Quits: jorendorff (jorendorff@moz-E7E6609F.hfc.comcastbusiness.net) (Quit: jorendorff)
  3322. # [23:27] * Joins: mchen (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  3323. # [23:27] <kanru> mchen is sitting beside me, I could ask him any audio question :)
  3324. # [23:27] * Quits: UCC (Thunderbir@moz-1363F65F.residential.rdsnet.ro) (Connection reset by peer)
  3325. # [23:27] <sicking> kanru: yes, he can help you with this :)
  3326. # [23:27] * bnicholson|lunch is now known as bnicholson
  3327. # [23:27] * Quits: jaws_ (jwein@moz-DB8FBC31.hsd1.mi.comcast.net) (Quit: )
  3328. # [23:28] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  3329. # [23:29] <@bz> https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html
  3330. # [23:29] <@bz> Where should I be looking?
  3331. # [23:29] <@bz> Or no more webaudio?
  3332. # [23:29] * Joins: UCC (Thunderbir@moz-1363F65F.residential.rdsnet.ro)
  3333. # [23:30] <@bz> !seen ehsan
  3334. # [23:30] <@killer> ehsan was last seen here 3 hours, 32 minutes ago.
  3335. # [23:30] <firebot> ehsan was last seen 10 minutes and 16 seconds ago, changing nick to ehsan|brb.
  3336. # [23:30] * Quits: vladan (vladan@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  3337. # [23:30] * Quits: UCC (Thunderbir@moz-1363F65F.residential.rdsnet.ro) (Quit: UCC)
  3338. # [23:31] * Quits: aditya (aditya@59C36E61.B4B229A5.34AA0C06.IP) (Quit: Leaving)
  3339. # [23:31] * Joins: vladan (vladan@F2D29657.F60B0462.67AC9B1.IP)
  3340. # [23:32] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  3341. # [23:32] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  3342. # [23:32] * armenzg_ is now known as armenzg_brb
  3343. # [23:32] * Quits: tanvi (tanvi@2557E599.66715431.D25A875A.IP) (Ping timeout)
  3344. # [23:32] * heycam|away is now known as heycam
  3345. # [23:32] * Quits: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP) (Ping timeout)
  3346. # [23:32] * Joins: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP)
  3347. # [23:33] * Joins: dbuc (dbuchner@2557E599.66715431.D25A875A.IP)
  3348. # [23:33] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/704d7d2ac810 - John Schoenick - Bug 810494 - Add test. r=josh
  3349. # [23:33] * Quits: lduros (user@moz-BED1C6A5.c3-0.rdl-ubr1.trpr-rdl.pa.cable.rcn.com) (Client exited)
  3350. # [23:33] * Quits: Pike (Pike@moz-2790AB6B.pool.mediaways.net) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121128204232])
  3351. # [23:33] * armenzg_brb is now known as armenzg_afk
  3352. # [23:34] * Joins: tanvi (tanvi@2557E599.66715431.D25A875A.IP)
  3353. # [23:34] * Joins: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  3354. # [23:34] * Parts: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  3355. # [23:34] * Joins: eduardn (chatzilla@F633AEEC.B0C74DF7.54460F44.IP)
  3356. # [23:35] * Joins: bsmith (bsmith@2557E599.66715431.D25A875A.IP)
  3357. # [23:37] * Joins: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  3358. # [23:37] * Quits: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP) (Quit: lmandel)
  3359. # [23:38] * joduinn-mtg is now known as joduinn
  3360. # [23:38] * Quits: @roc (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  3361. # [23:40] * sheeri is now known as sheeri-afk
  3362. # [23:43] * Joins: birtles (chatzilla@moz-348F61F0.mozilla.or.jp)
  3363. # [23:43] * Quits: zwol (zack@moz-84723B13.pitbpa.fios.verizon.net) (Quit: Ex-Chat)
  3364. # [23:44] * Quits: pnkfelix (pnkfelix@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  3365. # [23:44] * Quits: overholt (overholt@F2D29657.F60B0462.67AC9B1.IP) (Quit: Leaving)
  3366. # [23:44] * cmcavoy-offline is now known as cmcavoy
  3367. # [23:44] * Quits: pcwalton (pcwalton@43CB6079.66715431.D25A875A.IP) (Ping timeout)
  3368. # [23:45] * Quits: graememcc (chatzilla@moz-8BA24341.range31-52.btcentralplus.com) (Quit: ChatZilla 0.9.89 [Firefox 17.0.1/20121129165506])
  3369. # [23:45] * Joins: pcwalton (pcwalton@2557E599.66715431.D25A875A.IP)
  3370. # [23:45] * whimboo is now known as whimboo|afk
  3371. # [23:46] * Joins: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  3372. # [23:46] * ChanServ sets mode: +o roc
  3373. # [23:46] * geekboy is now known as geekboy|afk
  3374. # [23:47] * geekboy|afk is now known as geekboy
  3375. # [23:47] * rail is now known as rail_away
  3376. # [23:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/86e4243c2482 - Matt Woodrow - Backout changeset 3ba90f85653a (Bug 805343) for regressing android talos tests
  3377. # [23:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7f2fd849f4aa - Matt Woodrow - Backout changeset e8f5182d94c5 (Bug 805343) for regressing android talos tests
  3378. # [23:52] * Quits: smagnin (pike@moz-8CEB8724.fbx.proxad.net) (Quit: Quitte)
  3379. # [23:53] * Joins: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  3380. # [23:53] * Quits: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net) (Quit: erikvold)
  3381. # [23:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1c5601022840 - Tanvi Vyas - Bug 782654 - Add logic to check expandedPrincipal for addon content scripts.
  3382. # [23:54] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/eef87ef15814 - Tanvi Vyas - Bug 782654 - Use a whitelist approach rather than a blacklist approach for content types, so that by default we block instead of accept unknown types.
  3383. # [23:54] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3cb5f5c8fdc0 - Tanvi Vyas - Bug 782654 - Add Mixed Active state and an hasMixedActiveContentLoaded flag. (r=smaug)
  3384. # [23:55] * Joins: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP)
  3385. # [23:55] * Joins: milan (milan@F2D29657.F60B0462.67AC9B1.IP)
  3386. # [23:57] * Quits: thinker (user@moz-D921FE60.dynamic.kbronet.com.tw) (Client exited)
  3387. # [23:57] * geekboy is now known as geekboy|afk
  3388. # [23:57] * Joins: thinker (user@moz-D921FE60.dynamic.kbronet.com.tw)
  3389. # [23:58] <njn> AFAICT, there are no portable ways to time things in C++. If you can prove me otherwise, please do...
  3390. # [23:58] * Quits: hummeleBop (Instantbir@moz-2356396.fbx.proxad.net) (Quit: Instantbird 1.3 -- http://www.instantbird.com)
  3391. # [23:59] * geekboy|afk is now known as geekboy
  3392. # [23:59] * Joins: erikvold (erikvold@moz-33BF5BAF.gv.shawcable.net)
  3393. # Session Close: Fri Dec 14 00:00:00 2012

The end :)