/irc-logs / mozilla / #developers / 2013-11-08 / end

Options:

  1. # Session Start: Fri Nov 08 00:00:01 2013
  2. # Session Ident: #developers
  3. # [00:00] * geekboy|afk is now known as geekboy
  4. # [00:01] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  5. # [00:01] * Quits: KWierso_ (wkocher@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  6. # [00:02] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  7. # [00:02] * joduinn is now known as joduinn-coffee
  8. # [00:02] * Joins: till (till@moz-C087DF96.adsl.alicedsl.de)
  9. # [00:02] * Quits: Pike (chatzilla@moz-E853053D.pool.mediaways.net) (Quit: ChatZilla 0.9.90.1 [Firefox 24.0/20130910160258])
  10. # [00:03] * Joins: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP)
  11. # [00:04] * Quits: josh (josh@moz-22FFA53C.meeting.ietf.org) (Quit: josh)
  12. # [00:04] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  13. # [00:04] * Quits: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP) (Quit: leaving)
  14. # [00:04] * RyanVM is now known as RyanVM|afk
  15. # [00:05] * Quits: mreavy (chatzilla@moz-8E246820.meeting.ietf.org) (Ping timeout)
  16. # [00:05] * Quits: jesup|laptop (chatzilla@moz-5D227623.meeting.ietf.org) (Ping timeout)
  17. # [00:06] * philor|away is now known as philor
  18. # [00:06] <jcranmer|away> TimAbraldes: you'll add a sizeof(void*) to the vtable, but if the vtable is already there, sizeof(class) won't change
  19. # [00:06] <TimAbraldes> jcranmer|away: right, I'm wondering about the additional memory burden for the whole application
  20. # [00:06] <jcranmer|away> the additional memory burden is typically dwarfed by the size of the function code
  21. # [00:08] <TimAbraldes> jcranmer|away: basically I'm trying to figure out how much of a memory burden we're creating here - https://mxr.mozilla.org/mozilla-central/source/widget/shared/WidgetEventImpl.cpp#20
  22. # [00:09] <TimAbraldes> jcranmer|away: we create a virtual function for each event type we have
  23. # [00:09] <TimAbraldes> jcranmer|away: and each of those virtual functions exists in each of the event types
  24. # [00:09] * Joins: wlach (wlach@CC0122E6.8F96AEA7.2D179A7D.IP)
  25. # [00:09] * Joins: lerc (quassel@moz-2A8CFEEE.telstraclear.net)
  26. # [00:10] <TimAbraldes> jcranmer|away: so if each function is adding 4 bytes, are we adding 4*28*28 bytes of memory overhead in function pointers alone?
  27. # [00:11] * Quits: wlach (wlach@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  28. # [00:11] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Client exited)
  29. # [00:11] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  30. # [00:11] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  31. # [00:12] * Quits: jaoo (user@D2C2BC94.8E33A67F.F2D53343.IP) (Ping timeout)
  32. # [00:13] * Quits: jimm (jmathies@moz-F22D2B2A.pn.at.cox.net) (Quit: )
  33. # [00:14] * Joins: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk)
  34. # [00:14] * Quits: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  35. # [00:14] * Joins: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com)
  36. # [00:15] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  37. # [00:15] * Joins: dria (dria@moz-E77C3FDD.dsl.teksavvy.com)
  38. # [00:15] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  39. # [00:15] * ChanServ sets mode: +o ehsan
  40. # [00:15] <TimAbraldes> jcranmer|away: put another way... there should be 28 vftables already since we have 28 different event types. For each event type, we add a function pointer to the vftable of each event type, for a total of 784 function pointers. If each function pointer is 4 bytes, that's 3.1k of function pointers
  41. # [00:15] <@smaug> TimAbraldes: those changes to nsEvent were made almost only because of developer friendliness
  42. # [00:15] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  43. # [00:16] <TimAbraldes> smaug: right, I get that
  44. # [00:16] <@smaug> I was a bit worried about the vtable
  45. # [00:16] <@smaug> but others weren't so much
  46. # [00:16] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  47. # [00:16] * Joins: fabrice (fabrice@moz-C07D5168.p2p.sfo1.mozilla.com)
  48. # [00:17] <TimAbraldes> smaug: I was planning to comment in the dev.platform thread to see if my analysis is off or if people just don't care about the memory overhead
  49. # [00:17] <TimAbraldes> smaug: is there prior discussion I should check out first?
  50. # [00:17] * Quits: fabrice (fabrice@moz-C07D5168.p2p.sfo1.mozilla.com) (Max SendQ exceeded)
  51. # [00:18] <TimAbraldes> there are other things we could do for developer friendliness (e.g. get rid of the eventStructType member entirely and just use dynamic_cast for all downcasts)
  52. # [00:18] * Quits: givanica (givanica@F98A6337.373B660D.ED0E7C91.IP) (Ping timeout)
  53. # [00:18] * catlee is now known as catlee-away
  54. # [00:18] <TimAbraldes> I don't know how that would affect performance, or whether there's a solution that is ideal
  55. # [00:18] <TimAbraldes> I just want to raise the issue
  56. # [00:19] * Joins: josh (josh@moz-22FFA53C.meeting.ietf.org)
  57. # [00:20] * lightsofapollo|sf|afk is now known as lightsofapollo|sf
  58. # [00:20] <@smaug> TimAbraldes: see the blame
  59. # [00:20] <@smaug> it has the bug #
  60. # [00:20] <@smaug> can't recall the bug number right now
  61. # [00:20] <@smaug> nor the title
  62. # [00:21] <@smaug> TimAbraldes: we can't use dynamic_cast
  63. # [00:21] <TimAbraldes> I found it: bug 920425
  64. # [00:21] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  65. # [00:21] * Joins: jesup|laptop (chatzilla@moz-5D227623.meeting.ietf.org)
  66. # [00:22] <TimAbraldes> smaug: we can't use dynamic_cast at all?
  67. # [00:22] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  68. # [00:22] <@smaug> no
  69. # [00:22] <@smaug> https://developer.mozilla.org/en-US/docs/Using_CXX_in_Mozilla_code
  70. # [00:22] * Joins: nattokirai (nattokirai@moz-C286AD9A.bitcat.net)
  71. # [00:22] * Quits: eduardostalinho (eduardo@4AF4B4BB.66F9BDEB.5A61BDDA.IP) (Ping timeout)
  72. # [00:22] * Quits: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  73. # [00:23] <TimAbraldes> well that complicates matters
  74. # [00:23] <tbsaunde> so, I don't really see why that function needs to be virtual off hand, but I doubt its a huge deal
  75. # [00:23] * Joins: lmandel1 (uid15702@moz-E77DEB21.irccloud.com)
  76. # [00:24] * Quits: ctangira (ctangira@moz-CFCC7B62.cisco.com) (Ping timeout)
  77. # [00:24] * Quits: jesup|laptop (chatzilla@moz-5D227623.meeting.ietf.org) (Ping timeout)
  78. # [00:24] * Quits: drexler (drexler@moz-FF3CF295.cncdnh.east.myfairpoint.net) (Quit: If the bar aint bending...you aint benching!)
  79. # [00:24] * Joins: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com)
  80. # [00:24] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  81. # [00:25] * Quits: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Konversation terminated!)
  82. # [00:26] <TimAbraldes> tbsaunde: I think it needs to be virtual so that this returns something other than a nullptr:
  83. # [00:26] <TimAbraldes> tbsaunde: DerivedClass *d = base_class_pointer_that_actually_points_to_a_derived_class->AsDerivedClass();
  84. # [00:26] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  85. # [00:26] <TimAbraldes> or to be more concrete, throw some event type names in there
  86. # [00:27] <jcranmer|away> TimAbraldes: if we were to enable RTTI to be able to use dynamic_cast, you'd waste a lot more memory
  87. # [00:27] <tbsaunde> TimAbraldes: that doesn't require being virtual you can just do dirivedClass* AsD() { return eventType ==eD ? static_cast<dirviedClas*>(this) : NULL; }
  88. # [00:27] <TimAbraldes> jcranmer|away: yeah I wouldn't suggest we enable RTTI, so dynamic_cast is out the window. Hence the "that complicates matters" :)
  89. # [00:28] <tbsaunde> TimAbraldes: that said 4k of vtables isn't really even worth talking about
  90. # [00:29] * jlund is now known as jlund|brb
  91. # [00:29] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  92. # [00:30] <TimAbraldes> tbsaunde: that approach would only let you downcast to leaf nodes in the inheritance tree
  93. # [00:30] <jcranmer|away> if the class hierarchy were flat, you could use vtable pointers (except that's strictly speaking undefined behavior)
  94. # [00:31] <tbsaunde> jcranmer|away: well, there's also the trick getting your hands on that isn't exactly trivial
  95. # [00:31] <tbsaunde> TimAbraldes: if you know all the event types that can implement the non leaf class that's good enough
  96. # [00:31] <jcranmer|away> if you implement a closed hierarchy, you can hand-implement RTTI
  97. # [00:32] <tbsaunde> though it means you can't autogenerate the downcasting methods, but they already are half hand written anyway so whatever
  98. # [00:32] <jcranmer|away> [which is what LLVM does]
  99. # [00:32] <tbsaunde> jcranmer|away: I'm well aware of that ;)
  100. # [00:32] <luke> anyone know the best way to send an nsIPrincipal over ipidl?
  101. # [00:32] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  102. # [00:32] <jcranmer|away> [which makes doing some things from plugins annoying, since it's a closed hierarchy]
  103. # [00:32] * sfink|away is now known as sfink
  104. # [00:33] * Quits: ehugg (ehugg@moz-44ED6B7D.mycingular.net) (Quit: ehugg)
  105. # [00:34] * Quits: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  106. # [00:35] <TimAbraldes> I guess in the end we're probably talking about 0.01% of Fx memory usage
  107. # [00:35] * Joins: sheppy-offline (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com)
  108. # [00:35] * Joins: dzbarsky (Adium@BC1B0569.D5562F02.B5C6E82B.IP)
  109. # [00:35] <tbsaunde> yeah, I bet we add more than 4k to libxul every week
  110. # [00:35] <tbsaunde> maybe every week day?
  111. # [00:36] * Quits: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  112. # [00:36] * Joins: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com)
  113. # [00:37] <TimAbraldes> yuck
  114. # [00:37] <TimAbraldes> code removal FTW
  115. # [00:38] * Joins: arky (arky@F797418A.F17C359F.B9D97DBA.IP)
  116. # [00:38] * Quits: dzbarsky (Adium@BC1B0569.D5562F02.B5C6E82B.IP) (Quit: Leaving.)
  117. # [00:40] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Quit: mchang)
  118. # [00:41] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  119. # [00:41] <@smaug> luke: I'd assume sicking
  120. # [00:41] <dmajor> kinda breaks my heart that we ship a few tens of kb of __FILE__
  121. # [00:41] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  122. # [00:42] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  123. # [00:42] <luke> sicking: do you know a good way to communicate an nsIPrincipal over ipdl?
  124. # [00:42] * Joins: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  125. # [00:43] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  126. # [00:43] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  127. # [00:43] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  128. # [00:44] * Quits: AaronMT|away (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  129. # [00:44] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  130. # [00:44] * Joins: darkowlzzz (sunny@24E2599F.1414FDC2.25B273F5.IP)
  131. # [00:45] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  132. # [00:45] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Ping timeout)
  133. # [00:45] * corey|away is now known as corey
  134. # [00:45] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  135. # [00:46] * joduinn-coffee is now known as joduinn
  136. # [00:46] * Quits: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  137. # [00:47] * Joins: fabrice1 (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  138. # [00:47] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  139. # [00:47] * Quits: fabrice1 (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Max SendQ exceeded)
  140. # [00:47] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  141. # [00:48] * Joins: dveditz (dveditz@moz-67794A0A.hsd1.ca.comcast.net)
  142. # [00:48] * ChanServ sets mode: +o dveditz
  143. # [00:48] <@dveditz> RyanVM|afk: really afk? (worth checking...)
  144. # [00:48] <seth> hmm
  145. # [00:48] <seth> something weird has happened with nightly
  146. # [00:48] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/20e947c64012 - ffxbld - Automated checkin: version bump for firefox 26.0b3 release. DONTBUILD CLOSED TREE a=release
  147. # [00:49] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/dec705d53f6e - ffxbld - Added FIREFOX_26_0b3_RELEASE FIREFOX_26_0b3_BUILD1 tag(s) for changeset 20e947c64012. DONTBUILD CLOSED TREE a=release
  148. # [00:49] <seth> now when i try to run my debug build in gdb, it ends up remote controlling nightly instead =\
  149. # [00:49] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  150. # [00:49] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  151. # [00:49] <glandium> seth: linux?
  152. # [00:49] <seth> glandium: os x
  153. # [00:50] <glandium> seth: try -no-remote
  154. # [00:50] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  155. # [00:50] * Joins: mikeratcliffe (Adium@7537446E.B4204005.C3DDD137.IP)
  156. # [00:50] * ctalbert is now known as ctalbert|afk
  157. # [00:50] <seth> the debug build used to show up as a separate "NightDebug" app. that's still what the executable is called, but OS X doesn't see it as a separate app anymore
  158. # [00:50] * Joins: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  159. # [00:50] <seth> glandium: will try, though this is definitely a regression
  160. # [00:50] <seth> i see odd behavior too
  161. # [00:51] <seth> like a window comes up, and i paste a URL into its address bar, and the URL loads in my main Nightly browser instead of in that window
  162. # [00:51] <seth> very strange
  163. # [00:51] <seth> -no-remote does not help =(
  164. # [00:52] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  165. # [00:52] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  166. # [00:52] <sfink> -new-instance?
  167. # [00:53] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  168. # [00:53] <seth> sfink: will try it in a sec; did a pull and am rebuilding now
  169. # [00:53] * Quits: josh (josh@moz-22FFA53C.meeting.ietf.org) (Quit: josh)
  170. # [00:54] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  171. # [00:54] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  172. # [00:57] * Quits: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  173. # [00:57] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  174. # [00:57] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  175. # [00:58] * Joins: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  176. # [00:58] * Joins: aja (Instantbir@B656FB68.80184A0A.7880DB15.IP)
  177. # [00:58] * Quits: mstange (markus@moz-2FD71193.dip0.t-ipconnect.de) (Quit: mstange)
  178. # [00:59] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  179. # [01:00] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Ping timeout)
  180. # [01:00] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  181. # [01:01] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  182. # [01:01] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  183. # [01:01] * bbondy_ is now known as bbondy
  184. # [01:02] * Quits: hub (hub@moz-E12780DE.cable.teksavvy.com) (Ping timeout)
  185. # [01:02] * Joins: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  186. # [01:02] * nthomas is now known as nthomas|away
  187. # [01:02] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  188. # [01:03] * ewong|away is now known as ewong
  189. # [01:03] * Quits: peterhil (peterhil@moz-244DE79D.dhcp.inet.fi) (Quit: Must not waste too much time here...)
  190. # [01:04] * jorendorff is now known as jorendorff_away
  191. # [01:04] * geekboy is now known as geekboy|afk
  192. # [01:05] * geekboy|afk is now known as geekboy
  193. # [01:06] * Joins: jesup|laptop (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  194. # [01:06] * Joins: afwang (nooknook@moz-CFE05FEE.hsd1.ca.comcast.net)
  195. # [01:07] * Quits: grobinson|laptop (grob_@moz-EF57E39A.tor.uwaterloo.ca) (Ping timeout)
  196. # [01:07] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  197. # [01:07] * jlund|brb is now known as jlund
  198. # [01:08] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  199. # [01:10] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  200. # [01:10] * Joins: abr (abr@moz-43EAC4D3.meeting.ietf.org)
  201. # [01:11] <wchen> seth: it's not just you
  202. # [01:11] <seth> wchen: glad to hear. at least i'm not going insane =)
  203. # [01:12] <luke> smaug: ooh, IPC::Principal, maybe I want that?
  204. # [01:12] * Joins: grobinson|laptop (grob_@moz-221584FD.torservers.net)
  205. # [01:12] <@smaug> I really don't know
  206. # [01:12] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  207. # [01:12] * Quits: terrence (terrence@moz-B38D16E9.sb.sd.cox.net) (Ping timeout)
  208. # [01:13] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  209. # [01:13] * Quits: @bsmedberg (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net) (Ping timeout)
  210. # [01:14] * Joins: bsmedberg (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net)
  211. # [01:14] * ChanServ sets mode: +o bsmedberg
  212. # [01:14] * Quits: ehugg_ (chatzilla@52AE9432.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 24.0/20130910160258])
  213. # [01:14] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  214. # [01:14] * geekboy is now known as geekboy|afk
  215. # [01:16] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  216. # [01:16] * Joins: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP)
  217. # [01:17] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  218. # [01:17] * Quits: @bsmedberg (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net) (Ping timeout)
  219. # [01:18] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  220. # [01:19] <@njn> chrome is blocking 3rd party extensions completely, interesting
  221. # [01:21] * Quits: sheppy-offline (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com) (Connection reset by peer)
  222. # [01:21] * Joins: sheppy-offline (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com)
  223. # [01:23] <wchen> seth: rather than gdb remote controlling nightly, it seems like the keyboard input is just going into the previously focused application rather than the browser.
  224. # [01:23] <darkowlzzz> Is there a bug filed for 3 finger tap to lookup highlighted words on mac , http://lifehacker.com/ff-was-my-main-browser-until-about-last-6-months-i-hav-1460481816 ?
  225. # [01:23] * Joins: ckitching (ckitching@moz-73BD1AA5.nat.csx.cam.ac.uk)
  226. # [01:23] * Joins: willyaranda (willyarand@moz-E9433E44.red-95-122-172.staticip.rima-tde.net)
  227. # [01:24] <darkowlzzz> I have experienced it, but can't find a filed bug on bugzilla
  228. # [01:24] * Joins: briansmith (briansmith@moz-475A88AF.meeting.ietf.org)
  229. # [01:25] * Parts: ckerschb (ckerschb@moz-82777327.ics.uci.edu)
  230. # [01:26] * Joins: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net)
  231. # [01:27] <sicking> luke: yes, i think nsIPrincipal can simply be sent over ipdl. I.e. i think it has a serializer
  232. # [01:27] <sicking> i.e. you can simply pass it as an argument
  233. # [01:28] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  234. # [01:28] * Joins: wlach (wlach@CC0122E6.8F96AEA7.2D179A7D.IP)
  235. # [01:29] <seth> wchen: just finishing a build now
  236. # [01:29] * seth crosses fingers
  237. # [01:30] * Callek is now known as Callek_disconnected
  238. # [01:32] * Quits: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  239. # [01:32] <seth> wchen: still busted
  240. # [01:32] <wchen> seth: :(
  241. # [01:32] <luke> sicking: whoa
  242. # [01:32] * Joins: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP)
  243. # [01:33] * Quits: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net) (Ping timeout)
  244. # [01:33] <tbsaunde> dmajor: yeah, I wonder how hard it would be to strip that out
  245. # [01:33] * Joins: sebasmagri (user@7679CD05.2E76ECE8.C801199D.IP)
  246. # [01:34] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  247. # [01:34] <dmajor> tbsaunde: I think nearly all of it comes from NS_RUNTIMEABORT which we deliberately keep enabled in release (just opened a bug)
  248. # [01:34] * Joins: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net)
  249. # [01:34] * geekboy|afk is now known as geekboy
  250. # [01:35] <dmajor> we could just tell it to pass an empty string in opt -- or maybe people actually want this stuff. I don't know enough history.
  251. # [01:35] * geekboy is now known as geekboy|afk
  252. # [01:37] * Quits: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net) (Ping timeout)
  253. # [01:38] <tbsaunde> dmajor: yeah, but that crashes so we have the stakc and don't really need __file__
  254. # [01:38] * Quits: abr (abr@moz-43EAC4D3.meeting.ietf.org) (Quit: AFK)
  255. # [01:38] * Quits: twi (Adium@moz-710075B5.cust.dsl.vodafone.it) (Quit: Leaving.)
  256. # [01:38] * Joins: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net)
  257. # [01:41] * Quits: wlach (wlach@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  258. # [01:41] * Quits: tessarakt2 (jens@moz-EC6F2D6B.dip0.t-ipconnect.de) (Ping timeout)
  259. # [01:42] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  260. # [01:43] * Quits: arky (arky@F797418A.F17C359F.B9D97DBA.IP) (Quit: Leaving)
  261. # [01:43] * Joins: blassey__ (blassey@moz-CD7D4667.hsd1.ma.comcast.net)
  262. # [01:43] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  263. # [01:43] * Quits: willyaranda (willyarand@moz-E9433E44.red-95-122-172.staticip.rima-tde.net) (Quit: Saliendo)
  264. # [01:43] * Quits: blassey (blassey@moz-CD7D4667.hsd1.ma.comcast.net) (Ping timeout)
  265. # [01:44] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Quit: AFK)
  266. # [01:44] * khuey is now known as khuey|away
  267. # [01:44] * Joins: horiaolaru1 (Adium@8ADCE71F.66315F97.FB866788.IP)
  268. # [01:45] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  269. # [01:45] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  270. # [01:45] * Quits: horiaolaru (Adium@FCC064FE.17CB6122.FCAAE698.IP) (Ping timeout)
  271. # [01:46] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  272. # [01:48] * Joins: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  273. # [01:49] * Quits: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: vingtetun)
  274. # [01:49] * Quits: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  275. # [01:50] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  276. # [01:50] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Max SendQ exceeded)
  277. # [01:50] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  278. # [01:51] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Max SendQ exceeded)
  279. # [01:52] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  280. # [01:53] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Max SendQ exceeded)
  281. # [01:53] * Quits: briansmith (briansmith@moz-475A88AF.meeting.ietf.org) (Ping timeout)
  282. # [01:53] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  283. # [01:54] * Quits: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  284. # [01:54] * rail-mfbt is now known as rail_away
  285. # [01:54] * Quits: RyanVM|afk (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net) (Quit: RyanVM|afk)
  286. # [01:55] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Quit: aklotz)
  287. # [01:55] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  288. # [01:55] * Quits: mikeratcliffe (Adium@7537446E.B4204005.C3DDD137.IP) (Quit: Leaving.)
  289. # [01:56] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  290. # [01:56] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  291. # [01:58] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  292. # [01:58] * Quits: cabanier (cabanier@C9A3A99C.CB273EF7.1555703A.IP) (Quit: Leaving.)
  293. # [01:58] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  294. # [01:59] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  295. # [02:00] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  296. # [02:01] * Quits: retornam (retornam@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  297. # [02:02] <jesup|laptop> any idea on when the tree might open?
  298. # [02:02] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  299. # [02:02] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  300. # [02:02] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  301. # [02:03] * blassey__ is now known as blassey
  302. # [02:03] * khuey|away is now known as khuey
  303. # [02:06] <mccr8> jesup|laptop: it looks open now. ;)
  304. # [02:06] * Joins: terrence (terrence@moz-B38D16E9.sb.sd.cox.net)
  305. # [02:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/50bf8a24a269 - Byron Campen [:bwc] - Bug 936031 - Test case for bug. r=abr
  306. # [02:06] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5627b707affe - Byron Campen [:bwc] - Bug 936031 - Attempted fix. r=ehugg
  307. # [02:07] * nthomas|away is now known as nthomas
  308. # [02:07] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  309. # [02:07] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  310. # [02:08] * Joins: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com)
  311. # [02:08] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  312. # [02:08] <jesup|laptop> DUm Dum dum..... :-)
  313. # [02:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d0e8a46aad5f - Gian-Carlo Pascutto - Bug 932112: Don't free the global, shared Context ref. r=blassey
  314. # [02:09] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/32d82a576615 - Randell Jesup - Bug 932112: JB reflect for low-latency params r=mfinkle
  315. # [02:09] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  316. # [02:09] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5b8a157a6ed5 - Gian-Carlo Pascutto - Bug 932112: Use the non-main-thread FindClass implementation r=blassey
  317. # [02:09] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7aca035355ae - Randell Jesup - Bug 932112: Webrtc updated to 5041, pull made Mon Oct 28 12:17:00 EDT 2013 rs=jesup
  318. # [02:09] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/cc7e3ef4bb80 - Gian-Carlo Pascutto - Bug 932112: Initialize both JNI and OpenSLES so fallback can work. r=jesup
  319. # [02:09] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4481461159f2 - Gian-Carlo Pascutto - Bug 932112: Add a non-ARM MemoryBarrier function. r=glandium
  320. # [02:09] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/bd8f1571937f - Randell Jesup - Bug 932112: Rollup of changes previously applied to media/webrtc/trunk/webrtc rs=jesup
  321. # [02:09] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/c44f12776a87 - Wes Kocher - Merge b2g-inbound to m-c
  322. # [02:09] <firebot> http://hg.mozilla.org/mozilla-central/rev/279bf51491e3 - Gaia Pushbot - Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
  323. # [02:09] <firebot> http://hg.mozilla.org/mozilla-central/rev/cdfd0778a87a - Fabrice Desré - Bug 891882 - Enable touch event on B2G desktop r=vingtetun
  324. # [02:10] <firebot> http://hg.mozilla.org/mozilla-central/rev/7f98fd18e91f - Andrew Halberstadt - Bug 934680 - Re-enable b2g desktop mochitests that were disabled due to bug 924681, r=jgriffin
  325. # [02:10] <firebot> http://hg.mozilla.org/mozilla-central/rev/6741c6ab6dca - Gaia Pushbot - Bumping gaia.json for 1 gaia-central revision(s) a=gaia-bump
  326. # [02:10] <firebot> http://hg.mozilla.org/mozilla-central/rev/8c78604854b1 - Ryan VanderMeulen - Merge m-c to inbound.
  327. # [02:10] <firebot> http://hg.mozilla.org/mozilla-central/rev/601208e686ad - Fabrice Desré - backout Bug 891882 for Gu breakage
  328. # [02:11] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  329. # [02:12] <jesup|laptop> Beat the mc->mi merge!
  330. # [02:12] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  331. # [02:12] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  332. # [02:12] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  333. # [02:13] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  334. # [02:14] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Client exited)
  335. # [02:17] * Joins: dew1 (Instantbir@moz-E4452B8F.static.stls.mo.charter.com)
  336. # [02:18] * Quits: efaust (efaust@moz-8E7F06AB.hsd1.ca.comcast.net) (Connection reset by peer)
  337. # [02:18] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  338. # [02:18] <@khuey> markh: ping?
  339. # [02:18] * Quits: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com) (Ping timeout)
  340. # [02:19] * Joins: eduardostalinho (eduardo@4AF4B4BB.66F9BDEB.5A61BDDA.IP)
  341. # [02:19] * Joins: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP)
  342. # [02:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/94b46dda8d3e - Bill McCloskey - Bug 935338 - Get NSPR emulation working on Macs (r=jorendorff)
  343. # [02:20] <@khuey> markh: unping
  344. # [02:20] * Quits: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net) (Quit: Leaving)
  345. # [02:20] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  346. # [02:20] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  347. # [02:21] * Joins: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net)
  348. # [02:21] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Quit: AFK)
  349. # [02:21] * Quits: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Max SendQ exceeded)
  350. # [02:25] * Quits: jrgill (jrgill@moz-DEC99E33.stny.res.rr.com) (Connection reset by peer)
  351. # [02:25] * Joins: jrgill (jrgill@moz-DEC99E33.stny.res.rr.com)
  352. # [02:25] <markh> that de-escalated quickly!
  353. # [02:26] * Joins: dzbarsky (Adium@BC1B0569.D5562F02.B5C6E82B.IP)
  354. # [02:26] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  355. # [02:26] * heycam is now known as heycam|away
  356. # [02:26] <@khuey> markh: reping :-)
  357. # [02:27] <markh> khuey: hey!
  358. # [02:27] <markh> frameworker?
  359. # [02:27] <@khuey> markh: howdy
  360. # [02:27] <@khuey> markh: how did you guess? :-P
  361. # [02:27] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  362. # [02:27] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  363. # [02:27] <@gavin> khuey: finish real sharedworkers then we'll kill it
  364. # [02:27] <markh> yes!
  365. # [02:27] <@khuey> gavin: I'm filing that bug right now ;-)
  366. # [02:28] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  367. # [02:28] <@khuey> markh: I don't think we ever want to expose localStorage in a web worker though
  368. # [02:28] <@khuey> markh: is anything actually using it?
  369. # [02:28] <@gavin> khuey: https://bugzilla.mozilla.org/show_bug.cgi?id=879658
  370. # [02:28] <markh> khuey: I think one or 2 of our providers are. We disabled it for new providers some time abo
  371. # [02:29] * Quits: ggp_ (ggp@23E389F5.7CE419F9.1160D82E.IP) (Quit: Leaving...)
  372. # [02:29] * Joins: lpy (lpy@7360AA58.F09091A8.1348A864.IP)
  373. # [02:29] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Ping timeout)
  374. # [02:29] <@gavin> we should be able to avoid that being a problem
  375. # [02:30] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  376. # [02:30] <@khuey> ok
  377. # [02:30] * jlund is now known as jlund|afk
  378. # [02:30] * Quits: jrgill (jrgill@moz-DEC99E33.stny.res.rr.com) (Connection reset by peer)
  379. # [02:31] * Quits: WeirdAl (chatzilla@moz-D461843.ask.info) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
  380. # [02:31] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  381. # [02:31] <markh> khuey: I believe only facebook is using it - I'm not sure what the status of reaching out to them about it is
  382. # [02:31] <markh> but yeah, we identified that some time ago and took steps to prevent future providers using it
  383. # [02:31] * Joins: peterhil (peterhil@moz-244DE79D.dhcp.inet.fi)
  384. # [02:33] * Quits: bwc (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  385. # [02:33] * @khuey should ask sicking what we decided about FileReader
  386. # [02:33] * @khuey seems to remember that he wanted to kill it and replace it with the streams API or something
  387. # [02:35] * Joins: jrgill (jrgill@moz-DEC99E33.stny.res.rr.com)
  388. # [02:36] * Joins: timdream (timdream@moz-99690620.hinet-ip.hinet.net)
  389. # [02:37] * Joins: abr (abr@moz-43EAC4D3.meeting.ietf.org)
  390. # [02:37] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  391. # [02:37] * Joins: wlach (wlach@CC0122E6.8F96AEA7.2D179A7D.IP)
  392. # [02:38] * Quits: peterhil (peterhil@moz-244DE79D.dhcp.inet.fi) (Quit: Must not waste too much time here...)
  393. # [02:38] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  394. # [02:39] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  395. # [02:39] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  396. # [02:39] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  397. # [02:39] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  398. # [02:40] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9c2338877b05 - Nicholas Cameron - Bug 934842. CopySurface for data source surfaces. r=Bas
  399. # [02:40] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  400. # [02:40] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  401. # [02:41] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  402. # [02:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/de3af7ac0598 - Nicholas Nethercote - Bug 634417 - Remove inappropriate uses of vanilla malloc/calloc/realloc/free/strdup from SpiderMonkey. r=luke.
  403. # [02:44] * Quits: dzbarsky (Adium@BC1B0569.D5562F02.B5C6E82B.IP) (Quit: Leaving.)
  404. # [02:44] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  405. # [02:44] <@njn> well that only took a bit over 2.5 years
  406. # [02:45] * Joins: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  407. # [02:47] <@khuey> hah
  408. # [02:49] <KWierso|sheriffduty> so, if I'm doing a merge from m-c to inbound and a merge conflict consists of an iid change, do I just pick one of them or do I need a new one?
  409. # [02:49] * Quits: rwaldron (rwaldron@moz-57519E7C.nycmny.fios.verizon.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  410. # [02:50] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  411. # [02:50] * markh would probably just pick one, but that's why he isn't a sherrif!
  412. # [02:51] <@gavin> KWierso|sheriffduty: a new one is the safest bet
  413. # [02:51] <@gavin> but it likely doesn't much matter in practice
  414. # [02:51] <@gavin> (few people are building their native components against m-c or inbound)
  415. # [02:53] * Joins: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net)
  416. # [02:53] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  417. # [02:54] * Quits: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 25.0/20131030081700])
  418. # [02:54] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  419. # [02:55] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  420. # [02:56] * Quits: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  421. # [02:57] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  422. # [02:57] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  423. # [02:57] * Quits: horiaolaru1 (Adium@8ADCE71F.66315F97.FB866788.IP) (Quit: Leaving.)
  424. # [02:58] * Joins: mchen (chatzilla@moz-99690620.hinet-ip.hinet.net)
  425. # [02:59] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  426. # [02:59] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  427. # [03:00] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  428. # [03:01] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  429. # [03:02] * Joins: shelly (shelly@moz-99690620.hinet-ip.hinet.net)
  430. # [03:02] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  431. # [03:02] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  432. # [03:03] * Quits: jhlin (jolin@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  433. # [03:03] * Joins: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP)
  434. # [03:03] * Joins: jhlin (jolin@moz-99690620.hinet-ip.hinet.net)
  435. # [03:04] * Quits: grobinson|laptop (grob_@moz-221584FD.torservers.net) (Ping timeout)
  436. # [03:04] * Quits: chewey (chewey@moz-31012C0B.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  437. # [03:05] * Joins: cabanier (cabanier@F4B4BBBF.B2CAE1D2.5A8C189B.IP)
  438. # [03:05] * Joins: chewey (chewey@moz-22530F4B.dip0.t-ipconnect.de)
  439. # [03:05] * Quits: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  440. # [03:09] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  441. # [03:11] * Quits: lpy (lpy@7360AA58.F09091A8.1348A864.IP) (Ping timeout)
  442. # [03:12] * Joins: dzbarsky (Adium@moz-FDD2ABD6.hsd1.pa.comcast.net)
  443. # [03:13] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  444. # [03:13] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  445. # [03:14] * Callek_disconnected is now known as Callek
  446. # [03:14] * Quits: mcote (mcote@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  447. # [03:16] <froydnj> TimAbraldes: fwiw, the virtual functions have a space cost, but those function pointers also need to be relocated, which takes extra space on unixish platforms (maybe windows too)
  448. # [03:17] * Quits: heftig (heftig@moz-B2FDBD25.dip0.t-ipconnect.de) (Ping timeout)
  449. # [03:18] * joduinn is now known as joduinn-afk
  450. # [03:18] <seth> gps: ping
  451. # [03:18] <gps> seth: (autoresponse) content-free ping detected. Please consider providing some additional context so I can address your questions more efficiently.
  452. # [03:18] <TimAbraldes> wow
  453. # [03:19] <seth> bhearsum: ping
  454. # [03:19] <TimAbraldes> froydnj: and the implementations take up memory as well... it's worth keeping an eye on, but it sounded like we won't really concern ourselves with 10k of memory when we've got bigger fish to fry
  455. # [03:20] * Joins: bsmedberg (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net)
  456. # [03:20] * ChanServ sets mode: +o bsmedberg
  457. # [03:20] <TimAbraldes> froydnj: then again, maybe further analysis will reveal that we're using up 20 or 30k... i'm not sure where the "now we care" line is
  458. # [03:21] <TimAbraldes> froydnj: at first I kind of figured that 4k of reclaimed memory would be a pretty reasonable win :)
  459. # [03:21] <seth> glandium: ping
  460. # [03:21] <TimAbraldes> froydnj: out of curiosity though, what does it mean for the function pointers to be relocated?
  461. # [03:22] <glandium> seth: pong
  462. # [03:22] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  463. # [03:22] <seth> glandium: so bug 934070 is causing problems =(
  464. # [03:23] <glandium> seth: wtf
  465. # [03:23] <seth> glandium: OS X does not like the "MacOS" directory in a bundle to be a symlink
  466. # [03:23] <seth> glandium: i've had all sorts of weird behavior from gdb trying to debug today
  467. # [03:23] * Quits: wlach (wlach@CC0122E6.8F96AEA7.2D179A7D.IP) (Ping timeout)
  468. # [03:23] <seth> glandium: (the reason being that lots of things fail because firefox can't access its bundle correctly)
  469. # [03:24] <seth> the weird behavior isn't from gdb, to be clear: it's from firefox run under gdb
  470. # [03:24] <glandium> seth: sigh
  471. # [03:24] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  472. # [03:24] * Joins: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net)
  473. # [03:24] * Quits: cabanier (cabanier@F4B4BBBF.B2CAE1D2.5A8C189B.IP) (Quit: Leaving.)
  474. # [03:25] <seth> glandium: this is perhaps a bit presumptuous, but would you be willing to backout? =)
  475. # [03:26] * terrence is now known as terrence-afk
  476. # [03:26] * Quits: zwol (zack@moz-DBDA1B27.pitbpa.fios.verizon.net) (Quit: Ex-Chat)
  477. # [03:27] * Joins: joneshf-laptop (joneshf@moz-BAEA6F30.hsd1.ca.comcast.net)
  478. # [03:27] <glandium> seth: my local tree is not in a state where i can easily backout. would you mind doing it?
  479. # [03:28] <seth> glandium: i'd be happy to
  480. # [03:29] * Quits: abr (abr@moz-43EAC4D3.meeting.ietf.org) (Quit: AFK)
  481. # [03:29] * Joins: heftig (heftig@moz-76BC6A3B.dip0.t-ipconnect.de)
  482. # [03:30] * hwine is now known as hwine-ooo
  483. # [03:31] * Quits: inolen (Adium@A88571AE.CDFDA8DC.591ED24F.IP) (Quit: Leaving.)
  484. # [03:31] * coop is now known as coop|afk
  485. # [03:32] * Quits: joneshf-laptop (joneshf@moz-BAEA6F30.hsd1.ca.comcast.net) (Ping timeout)
  486. # [03:33] * Quits: rniwa (rniwa@5FEFE500.BA327C77.775DF071.IP) (Quit: rniwa)
  487. # [03:33] * Quits: billm (billm@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving)
  488. # [03:34] <froydnj> TimAbraldes: it means fixing up the pointers so they point to the correct place relative to where the library was loaded in memory
  489. # [03:34] * Quits: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com) (Quit: cilias)
  490. # [03:34] * Quits: MrMazda (fmcz@moz-8F21088B.cable.mindspring.com) (Quit: ChatZilla 0.9.86 [SeaMonkey 1.1.18/2009082712])
  491. # [03:35] <froydnj> TimAbraldes: 4k here, 4k there, pretty soon you're talking about real memory
  492. # [03:36] <TimAbraldes> froydnj: maybe it's still worth making the case in that thread, then...
  493. # [03:36] <TimAbraldes> froydnj: though without RTTI I don't have a better suggestion than the existing mechanism
  494. # [03:36] * Quits: sebasmagri (user@7679CD05.2E76ECE8.C801199D.IP) (Quit: ERC Version 5.3 (IRC client for Emacs))
  495. # [03:39] * Joins: atsai (atsai@moz-99690620.hinet-ip.hinet.net)
  496. # [03:39] <glandium> froydnj: elfhack alleviates a lot of that cost on linux/android/b2g, mac has less of a problem because it has a more compact form for relocations, and i think windows too
  497. # [03:39] <froydnj> glandium: indeed
  498. # [03:40] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  499. # [03:41] * Joins: ehsan (ehsan@moz-C48D29C4.cable.teksavvy.com)
  500. # [03:41] * ChanServ sets mode: +o ehsan
  501. # [03:41] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Quit: Gone to save the world!)
  502. # [03:42] * Quits: @ehsan (ehsan@moz-C48D29C4.cable.teksavvy.com) (Input/output error)
  503. # [03:43] * Joins: rcampbelllaos (rcampbelll@4E2A0F7D.6736A1A3.E8916D75.IP)
  504. # [03:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2cd921bf50a9 - Seth Fowler - Backout of bug 934070 for breaking debugging on OS X
  505. # [03:44] * Joins: darkowlzzzzz (sunny@82ABBA2A.17710192.27560D6E.IP)
  506. # [03:45] * Quits: darkowlzzz (sunny@24E2599F.1414FDC2.25B273F5.IP) (Ping timeout)
  507. # [03:45] * KWierso|sheriffduty is now known as KWierso
  508. # [03:46] <tbsaunde> TimAbraldes: actually if you're willing to assume there won't be more than 32 event classes you could just turn nsEventStructType into a bit field and do nonvirtual downcasting by checking the appropriate bit
  509. # [03:46] * KWierso is now known as KWierso|afk
  510. # [03:46] <TimAbraldes> definitely not willing to assume that
  511. # [03:46] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  512. # [03:46] <TimAbraldes> tbsaunde: we already have 28, and I can think of at least one more that we're going to add soon (Pointer Events)
  513. # [03:46] <TimAbraldes> tbsaunde: but maybe I'd be willing to assume that we won't have more than 64... :)
  514. # [03:47] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  515. # [03:47] <tbsaunde> TimAbraldes: making that field 64 bits would be even worse than virtual functions imo
  516. # [03:48] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  517. # [03:49] * philor is now known as philor|away
  518. # [03:49] <tbsaunde> if you do end up going over 32 classes you could switch to enum + bitset but at that point I wonder if the bitops will be as slow as the virtual function
  519. # [03:49] <tbsaunde> in any case I'm not very tempted to care, if roc thinks its good enough then I'm not arguing with him
  520. # [03:52] * Quits: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  521. # [03:53] * Joins: KenChang (KenChang@moz-99690620.hinet-ip.hinet.net)
  522. # [03:53] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Client exited)
  523. # [03:54] * Joins: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu)
  524. # [03:54] <TimAbraldes> regardless of who did the review or made the changes, I think it'd be worthwhile to find out if memory usage before the change was more-than-some-threshold better than after the change (doesn't talos check this?)
  525. # [03:55] <TimAbraldes> though it sounds like the threshold is sufficiently high that maybe just checking is more trouble than it's worth
  526. # [03:56] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Ping timeout)
  527. # [03:56] * Joins: dao (dao@moz-953930A1.superkabel.de)
  528. # [03:58] <tbsaunde> it checks memory usage, but I'm willing to bet dollars to doughnuts its < 100k
  529. # [03:58] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  530. # [04:00] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  531. # [04:00] <tbsaunde> and you know firefox tends to use hundreds of megs so
  532. # [04:00] <TimAbraldes> heh, so maybe we have bigger fish to fry
  533. # [04:01] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  534. # [04:01] * Joins: ctangira_ (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net)
  535. # [04:01] * heycam|away is now known as heycam
  536. # [04:01] <tbsaunde> yeah, even if you really care about code size I suspect there are better places to look
  537. # [04:02] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  538. # [04:03] * TimAbraldes starts deleting code
  539. # [04:03] * Quits: ctangira_ (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net) (Ping timeout)
  540. # [04:04] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  541. # [04:04] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  542. # [04:05] * Joins: ctangira (ctangira@moz-44402D73.cisco.com)
  543. # [04:07] * Joins: grobinson|laptop (grob_@8F27543.53313493.30D2E3F7.IP)
  544. # [04:09] * Joins: josh (josh@moz-E6247462.meeting.ietf.org)
  545. # [04:10] * Joins: Jerry (hshih@moz-99690620.hinet-ip.hinet.net)
  546. # [04:13] <KaiRo> nrc: I started a build with your patch and will run with it tomorrow for a few hours, let's see if that does it :)
  547. # [04:14] <nrc> KaiRo: great, thank you!
  548. # [04:16] * heycam is now known as heycam|away
  549. # [04:16] * Joins: Mook (mook@moz-A252160F.dsl.teksavvy.com)
  550. # [04:17] * Quits: eduardostalinho (eduardo@4AF4B4BB.66F9BDEB.5A61BDDA.IP) (Ping timeout)
  551. # [04:17] * Quits: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  552. # [04:18] * Joins: MrMazda (fmcz@moz-8F21088B.cable.mindspring.com)
  553. # [04:19] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  554. # [04:25] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  555. # [04:27] * Joins: hub (hub@moz-E12780DE.cable.teksavvy.com)
  556. # [04:27] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Quit: Edgar)
  557. # [04:28] * bz is now known as bz_sleep
  558. # [04:30] * heycam|away is now known as heycam
  559. # [04:30] * Quits: till (till@moz-C087DF96.adsl.alicedsl.de) (Client exited)
  560. # [04:31] * Joins: till (till@moz-C087DF96.adsl.alicedsl.de)
  561. # [04:32] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  562. # [04:33] * Quits: till (till@moz-C087DF96.adsl.alicedsl.de) (Ping timeout)
  563. # [04:33] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  564. # [04:34] * Quits: Hughman (Mibbit@moz-FDB0D813.lnk.telstra.net) (Ping timeout)
  565. # [04:34] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Ping timeout)
  566. # [04:37] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  567. # [04:38] * Joins: tomatoeblue (textual@moz-5C3A2631.cpe.distributel.net)
  568. # [04:38] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  569. # [04:39] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  570. # [04:40] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  571. # [04:41] * Joins: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP)
  572. # [04:41] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  573. # [04:42] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  574. # [04:45] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Quit: pcwalton)
  575. # [04:48] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  576. # [04:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e1d5e14f82d8 - Jeff Muizelaar - Bug 936246. Enable WEBGL_draw_buffers by default. r=jgilbert
  577. # [04:49] <@njn> is the inbound Android bustage a clobber issue?
  578. # [04:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/19f77c75ac93 - Jeff Muizelaar - Bug 932454. Make Atomics.h compilable with clang on Windows. r=nfroyd,jwalden
  579. # [04:50] * jchen is now known as jchen|away
  580. # [04:53] * Quits: dao (dao@moz-953930A1.superkabel.de) (Quit: Leaving.)
  581. # [04:54] * Joins: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net)
  582. # [04:56] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  583. # [04:59] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  584. # [04:59] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  585. # [05:00] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  586. # [05:02] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  587. # [05:02] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  588. # [05:03] * bc is now known as bc|afk
  589. # [05:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/82bc6c4f7e5b - Jeff Muizelaar - Bug 929471. Make DrawTargetCG independent from QuartzSupport.mm. r=bgirard
  590. # [05:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ca7e5bb28550 - Jeff Muizelaar - Bug 929471. Make CGLTexImageIOSurface2D take a CGLContextObj instead of a NSOpenGLContext. r=bgirard
  591. # [05:04] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki1)
  592. # [05:04] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  593. # [05:04] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  594. # [05:05] * nthomas is now known as nthomas|away
  595. # [05:06] * Joins: janv (varga@B8FBB6B4.73D44C34.4F33160D.IP)
  596. # [05:06] * Quits: dew1 (Instantbir@moz-E4452B8F.static.stls.mo.charter.com) (Ping timeout)
  597. # [05:06] * Joins: lizzard (ehenry@moz-A3C04F1.hsd1.or.comcast.net)
  598. # [05:09] * Quits: lizzard (ehenry@moz-A3C04F1.hsd1.or.comcast.net) (Quit: lizzard)
  599. # [05:10] * Joins: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com)
  600. # [05:10] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  601. # [05:11] * Quits: dzbarsky (Adium@moz-FDD2ABD6.hsd1.pa.comcast.net) (Quit: Leaving.)
  602. # [05:11] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  603. # [05:13] * Quits: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  604. # [05:13] <dougt> taras: ping?
  605. # [05:16] * Quits: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com) (Connection reset by peer)
  606. # [05:18] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  607. # [05:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2ba06be1165b - Kamil Jozwiak - Bug 927038 - Using nsIUUIDGenerator rather than Date.now(). r=mbrubeck
  608. # [05:19] * Joins: dzbarsky (Adium@moz-FDD2ABD6.hsd1.pa.comcast.net)
  609. # [05:19] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  610. # [05:19] * philor|away is now known as philor
  611. # [05:20] * Joins: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com)
  612. # [05:20] * Quits: dzbarsky (Adium@moz-FDD2ABD6.hsd1.pa.comcast.net) (Quit: Leaving.)
  613. # [05:20] * Quits: spohl|away (Adium@C97E3D49.F404A8D4.975DB329.IP) (Ping timeout)
  614. # [05:21] * Joins: spohl (Adium@563FC5BE.1B4F02A2.27500626.IP)
  615. # [05:21] * Joins: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net)
  616. # [05:21] <@njn> pushing on top of bustage seems to be the go, I guess
  617. # [05:22] <taras> dougt: sup
  618. # [05:23] * jcranmer|away is now known as jcranmer
  619. # [05:23] <jcranmer> I feel like an idiot
  620. # [05:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3e92e917cd7e - Markus Stange - Bug 936074 - Fix nsIHandleReportCallback typo. r=njn.
  621. # [05:23] <philor> how we roll
  622. # [05:23] <@njn> at least mine was DONTBUILD
  623. # [05:23] <philor> stupid sheriffs don't like it, they can stay awake 24/7
  624. # [05:23] * Quits: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com) (Ping timeout)
  625. # [05:24] * Quits: spohl (Adium@563FC5BE.1B4F02A2.27500626.IP) (Quit: Leaving.)
  626. # [05:24] <philor> pushing with the summary people used for their attachment rather than a description of what it fixes seems to increasingly be how we roll, too
  627. # [05:25] <philor> "Attempted fix" being a particularly egregious example
  628. # [05:26] * Joins: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com)
  629. # [05:26] <philor> oopsy, seems to be burning a lot
  630. # [05:27] * Quits: hub (hub@moz-E12780DE.cable.teksavvy.com) (Ping timeout)
  631. # [05:27] <philor> jrmuizel: what did you redefine?
  632. # [05:28] <philor> or reinclude in a surprising spot, or something
  633. # [05:29] <jrmuizel> philor: ?
  634. # [05:29] <philor> jrmuizel: https://tbpl.mozilla.org/php/getParsedLog.php?id=30309751&full=1&branch=mozilla-inbound#error0
  635. # [05:29] * Joins: dew1 (Instantbir@moz-E4452B8F.static.stls.mo.charter.com)
  636. # [05:29] <jrmuizel> philor: I'll back that out
  637. # [05:29] * Quits: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com) (Client exited)
  638. # [05:29] * Joins: hub (hub@moz-E12780DE.cable.teksavvy.com)
  639. # [05:30] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  640. # [05:30] <philor> jesup|away-to-ietf: hopeless ping
  641. # [05:30] * Quits: dmarcos_ (dmarcos@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving...)
  642. # [05:30] * Quits: geo (geo@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  643. # [05:31] * Joins: geo- (geo@moz-BBE3ABD.mv.mozilla.com)
  644. # [05:31] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  645. # [05:32] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  646. # [05:32] <philor> glandium: got a spare opinion I can borrow?
  647. # [05:32] <dougt> khuey: hey there.
  648. # [05:32] * Quits: KaiRo (robert@moz-DF544905.adsl.highway.telekom.at) (Input/output error)
  649. # [05:32] <dougt> i heard from QA that the permission prompt was broken again
  650. # [05:32] <dougt> do you know anything about this?
  651. # [05:33] * kaze is now known as kaze|zZz
  652. # [05:33] * Joins: mdas (mdas@519FD725.6AD46F0.6BEEAEBD.IP)
  653. # [05:34] * Quits: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net) (Ping timeout)
  654. # [05:34] <philor> glandium: https://tbpl.mozilla.org/php/getParsedLog.php?id=30305946&tree=Mozilla-Inbound etc., android's building sometimes and failing sometimes, dunno whether https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=4481461159f2 needed a clobber or needs to be backed out for having a build race condition
  655. # [05:35] * Joins: shorlander (shorlander@moz-9F94634C.dhcp.insightbb.com)
  656. # [05:35] * Joins: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net)
  657. # [05:37] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  658. # [05:40] <jesup|laptop> philor: pong
  659. # [05:41] * Joins: dbaron (dbaron@moz-104CC309.mv.mozilla.com)
  660. # [05:41] * ChanServ sets mode: +ao dbaron dbaron
  661. # [05:41] <philor> jesup|laptop: https://tbpl.mozilla.org/php/getParsedLog.php?id=30305946&tree=Mozilla-Inbound etc., android's building sometimes and failing sometimes, dunno whether https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=4481461159f2 needed a clobber or needs to be backed out for having a build race condition
  662. # [05:41] * Joins: bent|lunch (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP)
  663. # [05:41] * Quits: bent|lunch (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  664. # [05:42] <jesup|laptop> philor: Let's try a clobber on that one. No reason it should be failing
  665. # [05:43] <philor> jesup|laptop: I did, several times over, but the only way to tell the difference between clobber-needed and race-needs-to-stop is... wait a few days I guess
  666. # [05:45] <jesup|laptop> well, source files existing shouldn't be a race. The only unusual bit about those files is that we have shared/foo.cc #including android/foo.cc (because gyp insists that sources with "android" have to be android-only)
  667. # [05:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b40ccf163d82 - Jeff Muizelaar - Bug 936246. Bustage fix for compiler warning as error.
  668. # [05:47] * Quits: bholley (anonymous@moz-A2189431.hsd1.ca.comcast.net) (Quit: bholley)
  669. # [05:47] * Joins: dmarcos_ (dmarcos@F7C9C5FA.4F753A73.D4043753.IP)
  670. # [05:47] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Quit: Leaving.)
  671. # [05:47] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  672. # [05:47] <jrmuizel> philor: should be fixed now. sorry about that
  673. # [05:48] * Quits: hsivonen (hsivonen@moz-E533C3E2.esp.mediateam.fi) (Client exited)
  674. # [05:48] * Quits: dmarcos_ (dmarcos@F7C9C5FA.4F753A73.D4043753.IP) (Quit: Leaving...)
  675. # [05:49] <philor> no worries
  676. # [05:49] <philor> okay, let's reopen, and let it be Europe's problem
  677. # [05:49] <jesup|laptop> philor: That's really got to be a clobber issue. It's a file I removed in my patches
  678. # [05:51] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/74a6f39a79e6 - Andreas Gal - Bug 930451 - Part 2: Use the new Rendering gradient cache for CSS border gradients as well. r=roc
  679. # [05:51] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e981813e29a8 - Andreas Gal - Bug 930451 - Part 1: Factor out CSS gradient cache into a new class gfxGradientCache. r=roc
  680. # [05:51] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1574b1da1773 - Andreas Gal - Bug 930451 - Part 3: Use the gradient cache for SVG gradients as well. r=roc
  681. # [05:52] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c2ace0287514 - Chris Peterson - Bug 935395 - Fix QuickDraw Cursor declaration warning. r=smichaud
  682. # [05:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/23aa24fa8d20 - Chris Peterson - Bug 935370 - Inline all the Pod functions. r=waldo
  683. # [05:54] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Quit: Leaving.)
  684. # [05:58] * Quits: mdas (mdas@519FD725.6AD46F0.6BEEAEBD.IP) (Input/output error)
  685. # [05:58] * Joins: mdas (mdas@519FD725.6AD46F0.6BEEAEBD.IP)
  686. # [05:59] * Quits: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  687. # [06:00] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  688. # [06:00] * Quits: mdas (mdas@519FD725.6AD46F0.6BEEAEBD.IP) (Ping timeout)
  689. # [06:01] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Quit: yzen)
  690. # [06:01] * Quits: Matti (Matti@moz-8D45D316.dip0.t-ipconnect.de) (Ping timeout)
  691. # [06:01] * Joins: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP)
  692. # [06:01] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  693. # [06:01] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  694. # [06:03] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  695. # [06:03] * Quits: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  696. # [06:04] * Joins: Matti_away (Matti@moz-E523C49B.dip0.t-ipconnect.de)
  697. # [06:05] * Matti_away is now known as Matti
  698. # [06:05] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  699. # [06:06] * Quits: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP) (Quit: Ex-Chat)
  700. # [06:06] * Quits: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP) (Quit: Leaving.)
  701. # [06:08] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  702. # [06:08] * Quits: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com) (Quit: lmandel)
  703. # [06:09] * Joins: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP)
  704. # [06:10] * Joins: Hughman (Mibbit@moz-518025CC.lnk.telstra.net)
  705. # [06:10] * Joins: m_kato (m_kato@moz-C286AD9A.bitcat.net)
  706. # [06:11] * mattwoodrow is now known as mattwoodrow|away
  707. # [06:11] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  708. # [06:11] * mattwoodrow|away is now known as mattwoodrow
  709. # [06:15] * Quits: shorlander (shorlander@moz-9F94634C.dhcp.insightbb.com) (Ping timeout)
  710. # [06:16] * Joins: shorlander (shorlander@124DBDD5.42E6916F.81B01791.IP)
  711. # [06:17] * Joins: masayuki2 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  712. # [06:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2fb08dc14d68 - Jim Blandy - Bug 887077: Use getter functions to retrieve ownable resources from CompileOptions, instead of direct data member access. r=terrence
  713. # [06:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/74a8ba38863b - Jim Blandy - Bug 887077: Use ReadOnlyCompileOptions in preference to CompileOptions where possible. r=terrence
  714. # [06:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/528cc63b3e0a - Jim Blandy - Bug 887077: Split CompileOptions into ReadOnlyCompileOptions, CompileOptions, and OwningCompileOptions. r=terrence
  715. # [06:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3cbb15a6a12e - Jim Blandy - Bug 887077: Use OwningCompileOptions for off-main-thread compilation. r=terrence
  716. # [06:18] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  717. # [06:21] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  718. # [06:21] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  719. # [06:22] * Quits: @dbaron (dbaron@moz-104CC309.mv.mozilla.com) (Ping timeout)
  720. # [06:24] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/67a25599600e - Matt Woodrow - Bug 935297 - Part 5: Implement StreamToSink on CG. r=Bas,jrmuizel
  721. # [06:26] * Joins: lpy (lpy@B0577DE8.D41998AD.8C13C571.IP)
  722. # [06:26] * Quits: ctangira (ctangira@moz-44402D73.cisco.com) (Quit: ctangira)
  723. # [06:26] * Joins: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu)
  724. # [06:27] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  725. # [06:30] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  726. # [06:31] * Quits: josh (josh@moz-E6247462.meeting.ietf.org) (Quit: josh)
  727. # [06:35] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  728. # [06:36] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  729. # [06:37] * Quits: darkowlzzzzz (sunny@82ABBA2A.17710192.27560D6E.IP) (Quit: This computer has gone to sleep)
  730. # [06:37] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Quit: mchang)
  731. # [06:38] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  732. # [06:39] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  733. # [06:40] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  734. # [06:40] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  735. # [06:41] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Quit: yzen)
  736. # [06:41] * Quits: masayuki2 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  737. # [06:42] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Ping timeout)
  738. # [06:42] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  739. # [06:43] * Quits: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net) (Connection reset by peer)
  740. # [06:43] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Connection reset by peer)
  741. # [06:43] * Quits: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP) (Quit: Leaving.)
  742. # [06:44] * Joins: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  743. # [06:44] * Joins: grobinson|laptop_ (grob_@49CDF959.BF1C56C5.27500626.IP)
  744. # [06:44] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  745. # [06:46] * Joins: mjh563 (mjh563@moz-E385BD04.cable.virginm.net)
  746. # [06:49] * Joins: lizzard (ehenry@CDF0D7DB.A033706C.284344F5.IP)
  747. # [06:50] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Client exited)
  748. # [06:50] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  749. # [06:51] * Quits: birtles (chatzilla@moz-C286AD9A.bitcat.net) (Connection reset by peer)
  750. # [06:51] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  751. # [06:52] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  752. # [06:53] * Quits: grobinson|laptop (grob_@8F27543.53313493.30D2E3F7.IP) (Quit: Leaving)
  753. # [06:54] * Quits: grobinson|laptop_ (grob_@49CDF959.BF1C56C5.27500626.IP) (Quit: Leaving)
  754. # [06:54] * Quits: janv (varga@B8FBB6B4.73D44C34.4F33160D.IP) (Quit: This computer has gone to sleep)
  755. # [06:59] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  756. # [06:59] * Joins: gsvelto (gsvelto@moz-4C54A775.clienti.tiscali.it)
  757. # [07:00] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  758. # [07:00] <@khuey> dougt: nope
  759. # [07:01] <@khuey> I'm pretty sure that patch hasn't relanded
  760. # [07:01] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  761. # [07:01] * Joins: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP)
  762. # [07:01] <dougt> khuey: okay
  763. # [07:01] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  764. # [07:01] * @khuey heads out
  765. # [07:01] * Quits: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 24.0/20130916094533])
  766. # [07:01] <dougt> i'll pretend that there was a mismatch of gaia and mc
  767. # [07:01] * khuey is now known as khuey|away
  768. # [07:01] <dougt> tomorrow i'll look again.
  769. # [07:02] * Joins: jviereck (Adium@moz-CF8216D6.dip0.t-ipconnect.de)
  770. # [07:02] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  771. # [07:04] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  772. # [07:04] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  773. # [07:05] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bcfb0d973c06 - Matt Woodrow - Bug 880031 - Make animated transforms force all above content to be in a separate ThebesLayer. r=roc
  774. # [07:06] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  775. # [07:06] * Quits: jviereck (Adium@moz-CF8216D6.dip0.t-ipconnect.de) (Quit: Leaving.)
  776. # [07:06] * Joins: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk)
  777. # [07:06] * Joins: jviereck (Adium@moz-CF8216D6.dip0.t-ipconnect.de)
  778. # [07:07] * Quits: jviereck (Adium@moz-CF8216D6.dip0.t-ipconnect.de) (Quit: Leaving.)
  779. # [07:08] * Quits: Optimizer (Optimizer@E9B6295A.1358A2B6.BE4CF869.IP) (Ping timeout)
  780. # [07:12] * khuey|away is now known as khuey
  781. # [07:12] * Quits: shorlander (shorlander@124DBDD5.42E6916F.81B01791.IP) (Ping timeout)
  782. # [07:14] * Joins: petruta (Mibbit@601F3B17.33662590.A5830293.IP)
  783. # [07:15] * Quits: @njn (chatzilla@moz-CEF3C7C1.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 28.0a1/20131108082219])
  784. # [07:15] * Joins: shorlander (shorlander@52D2AF3.3B386255.383890D6.IP)
  785. # [07:15] * jcranmer is now known as jcranmer|away
  786. # [07:16] <jesup|laptop> Looks like the clobber fixed android
  787. # [07:16] * Joins: njn (chatzilla@moz-CEF3C7C1.dyn.iinet.net.au)
  788. # [07:16] * ChanServ sets mode: +o njn
  789. # [07:17] * Quits: @njn (chatzilla@moz-CEF3C7C1.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 28.0a1/20131108082219])
  790. # [07:17] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  791. # [07:17] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Quit: mchang)
  792. # [07:20] * Joins: vendo (chatzilla@6D7CE8E4.CE4DDBE6.300931B2.IP)
  793. # [07:20] * mattwoodrow is now known as mattwoodrow|away
  794. # [07:21] * Quits: aja (Instantbir@B656FB68.80184A0A.7880DB15.IP) (Connection reset by peer)
  795. # [07:21] * Joins: aja (Instantbir@B656FB68.80184A0A.7880DB15.IP)
  796. # [07:21] <fabrice> dougt: what's broken (I mean, apart the keyboard in the browser app...)
  797. # [07:22] <dougt> marcia said that the geo prompt didn't work
  798. # [07:22] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  799. # [07:22] <dougt> i was running between meetings when she told me, and I didn't get which version oterh than it was the morning build.
  800. # [07:22] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  801. # [07:23] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  802. # [07:24] * Quits: lizzard (ehenry@CDF0D7DB.A033706C.284344F5.IP) (Ping timeout)
  803. # [07:24] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  804. # [07:24] * Quits: shorlander (shorlander@52D2AF3.3B386255.383890D6.IP) (Ping timeout)
  805. # [07:26] <fabrice> ok...
  806. # [07:27] * juanb is now known as juanb|afk
  807. # [07:27] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  808. # [07:32] * Joins: victorporof (victorporo@9B024C76.73B1E539.9B1E38F4.IP)
  809. # [07:32] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Client exited)
  810. # [07:32] * Joins: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu)
  811. # [07:34] * Joins: victorporof_ (victorporo@9B024C76.73B1E539.9B1E38F4.IP)
  812. # [07:34] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Ping timeout)
  813. # [07:35] * Quits: nattokirai (nattokirai@moz-C286AD9A.bitcat.net) (Quit: nattokirai)
  814. # [07:35] * Quits: victorporof (victorporo@9B024C76.73B1E539.9B1E38F4.IP) (Ping timeout)
  815. # [07:36] * Joins: pcwalton (pcwalton@moz-B51927E9.hsd1.ca.comcast.net)
  816. # [07:37] * whimboo|afk is now known as whimboo
  817. # [07:38] * capella is now known as capella|away
  818. # [07:38] * Joins: lizzard (ehenry@moz-A3C04F1.hsd1.or.comcast.net)
  819. # [07:38] * Joins: birtles (chatzilla@moz-C286AD9A.bitcat.net)
  820. # [07:41] <mjrosenb> is it just me, or does hg.mozilla.org not actually align the line numbers?
  821. # [07:42] * Joins: twi (Adium@moz-710075B5.cust.dsl.vodafone.it)
  822. # [07:42] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  823. # [07:43] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  824. # [07:43] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  825. # [07:44] * Joins: Optimizer (Optimizer@3184854C.2F164F73.D2D1FAF0.IP)
  826. # [07:44] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  827. # [07:46] * heycam is now known as heycam|away
  828. # [07:48] * Quits: gsvelto (gsvelto@moz-4C54A775.clienti.tiscali.it) (Ping timeout)
  829. # [07:48] * Quits: TimAbraldes (Instantbir@moz-7FD19BDC.hsd1.or.comcast.net) (Quit: TimAbraldes)
  830. # [07:52] * Quits: Mook (mook@moz-A252160F.dsl.teksavvy.com) (Quit: Mook)
  831. # [07:53] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  832. # [07:53] * Joins: Asa (asa@4508CAE6.38324963.204CA821.IP)
  833. # [07:53] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Quit: Leaving.)
  834. # [07:55] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Quit: Gone to save the world!)
  835. # [07:56] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  836. # [07:56] <timdream> is there a git mirror exist for m-i?
  837. # [07:56] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  838. # [07:57] * Quits: Hughman (Mibbit@moz-518025CC.lnk.telstra.net) (Quit: http://www.mibbit.com ajax IRC Client)
  839. # [07:57] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  840. # [07:57] * timdream github
  841. # [07:58] * Quits: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net) (Ping timeout)
  842. # [07:58] <tbsaunde> github.com/mozilla/mozilla-central.git is the current one
  843. # [07:58] <tbsaunde> though that may change soon
  844. # [07:59] <timdream> tbsaunde: yeah, the hash is totally different :-/
  845. # [08:00] <timdream> tbsaunde: B2G is using https://github.com/mozilla/releases-mozilla-central
  846. # [08:00] * timdream no idea why we need two
  847. # [08:01] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  848. # [08:02] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  849. # [08:02] <timdream> wait, B2G is using http://git.mozilla.org/?p=releases/gecko.git;a=summary which is actually the 3rd set of hashes
  850. # [08:03] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  851. # [08:03] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  852. # [08:03] <tbsaunde> I would think those last two would have the same hashes, but I don't understand the releng git setup well, I just no its complicated
  853. # [08:04] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  854. # [08:05] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Quit: Leaving...)
  855. # [08:05] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  856. # [08:06] <kanru> timdream: and https://github.com/mozilla/integration-gecko-dev the future releng git mirror
  857. # [08:07] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  858. # [08:07] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  859. # [08:08] <timdream> kanru: thanks, that's indeed the 3rd set of the hashes
  860. # [08:08] * timdream git remote add to switch to the inbound branch
  861. # [08:11] * whimboo is now known as whimboo|afk
  862. # [08:11] * Quits: naveed (nihsanulla@moz-3CA42256.bstnma.fios.verizon.net) (Ping timeout)
  863. # [08:11] * Joins: jaoo (user@D2C2BC94.8E33A67F.F2D53343.IP)
  864. # [08:12] * Joins: naveed (nihsanulla@moz-3CA42256.bstnma.fios.verizon.net)
  865. # [08:12] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  866. # [08:13] * Quits: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP) (Quit: Leaving.)
  867. # [08:13] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Ping timeout)
  868. # [08:13] * Joins: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz)
  869. # [08:13] * Tomcat|afk is now known as Tomcat|sheriffduty
  870. # [08:14] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  871. # [08:14] * corey is now known as corey|away
  872. # [08:14] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  873. # [08:14] * Quits: vchang (Vincent@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  874. # [08:15] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Input/output error)
  875. # [08:17] * Quits: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz) (Quit: pbocan)
  876. # [08:20] * Joins: thelodger (thelodger@7CE7EE7D.732E9882.12648089.IP)
  877. # [08:21] <Tomcat|sheriffduty> good morning guys
  878. # [08:22] * Joins: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP)
  879. # [08:22] * Joins: wolfiR (wolfiR@moz-2D545C91.dip0.t-ipconnect.de)
  880. # [08:26] * Quits: fox2mike (shyam@moz-DB4A9C19.scl3.mozilla.com) (Quit: BOFH Excuse #191: Just type mv * /dev/null.)
  881. # [08:26] * Quits: redwood (chatzilla@26E73836.156CBEAD.74E1C77A.IP) (Quit: i have to go, my planet needs me!)
  882. # [08:27] * Joins: mwargers (chatzilla@moz-AF369B35.adsl.online.nl)
  883. # [08:28] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  884. # [08:29] * khuey is now known as khuey|away
  885. # [08:31] * Quits: thinker (user@moz-95FE47D3.dynamic.kbronet.com.tw) (Connection reset by peer)
  886. # [08:32] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  887. # [08:32] * Fallen|away is now known as Fallen
  888. # [08:32] * Joins: fox2mike (shyam@C62C4188.66A0454.467F5724.IP)
  889. # [08:33] * Quits: fox2mike (shyam@C62C4188.66A0454.467F5724.IP) (Quit: BOFH Excuse #191: Just type mv * /dev/null.)
  890. # [08:33] * Joins: fox2mike (shyam@C62C4188.66A0454.467F5724.IP)
  891. # [08:34] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  892. # [08:37] * Quits: pcwalton (pcwalton@moz-B51927E9.hsd1.ca.comcast.net) (Quit: pcwalton)
  893. # [08:38] * Quits: squib (squib@moz-5175C098.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  894. # [08:39] * philor is now known as philor|away
  895. # [08:40] * Joins: hsivonen (hsivonen@moz-E533C3E2.esp.mediateam.fi)
  896. # [08:40] * Parts: hsivonen (hsivonen@moz-E533C3E2.esp.mediateam.fi)
  897. # [08:41] * Joins: hsivonen (hsivonen@moz-E533C3E2.esp.mediateam.fi)
  898. # [08:41] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Quit: Leaving.)
  899. # [08:43] * Quits: fox2mike (shyam@C62C4188.66A0454.467F5724.IP) (Quit: BOFH Excuse #191: Just type mv * /dev/null.)
  900. # [08:44] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  901. # [08:44] <mjrosenb> Tomcat|sheriffduty: morning.
  902. # [08:44] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Input/output error)
  903. # [08:45] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  904. # [08:46] <Tomcat|sheriffduty> hi mjrosenb
  905. # [08:46] * Quits: @dveditz (dveditz@moz-67794A0A.hsd1.ca.comcast.net) (Ping timeout)
  906. # [08:47] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Ping timeout)
  907. # [08:48] * Joins: glazou (glazou@F335B7EE.218590B8.83DA1961.IP)
  908. # [08:48] <glazou> bonjour
  909. # [08:52] * Joins: nicklebedev (nicklebede@moz-838152B8.net135.n37.ru)
  910. # [08:54] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  911. # [08:55] * Joins: fox2mike (shyam@C62C4188.66A0454.467F5724.IP)
  912. # [08:56] * Joins: Ms2ger (Ms2ger@moz-EA6EE9F3.adsl-dyn.isp.belgacom.be)
  913. # [08:56] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  914. # [08:57] <Ms2ger> Bonjour
  915. # [08:57] * Quits: matthewgertner (matthewger@E05025B2.7102BCB6.B7C3970A.IP) (Quit: matthewgertner)
  916. # [08:59] * Joins: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  917. # [08:59] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  918. # [09:00] * Joins: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  919. # [09:00] * Joins: mstange (markus@moz-2FD71193.dip0.t-ipconnect.de)
  920. # [09:00] * Quits: paulproteus (quassel@199.199.210.158) (Ping timeout)
  921. # [09:01] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  922. # [09:02] * Joins: paulproteus (quassel@458FE134.3EC36C88.CBDCF1DC.IP)
  923. # [09:03] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  924. # [09:03] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  925. # [09:04] * Joins: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP)
  926. # [09:04] <glandium> Ms2ger: non
  927. # [09:04] <Ms2ger> A reasonable day, then, perhaps?
  928. # [09:05] * Quits: horiaolaru (Adium@8ADCE71F.66315F97.FB866788.IP) (Ping timeout)
  929. # [09:05] <glandium> ok
  930. # [09:05] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Ping timeout)
  931. # [09:06] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Quit: Leaving.)
  932. # [09:06] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  933. # [09:06] * kaze|zZz is now known as kaze
  934. # [09:07] * Parts: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  935. # [09:07] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Connection reset by peer)
  936. # [09:07] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Ping timeout)
  937. # [09:07] * Joins: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  938. # [09:07] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  939. # [09:08] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  940. # [09:08] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  941. # [09:09] * Quits: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  942. # [09:13] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  943. # [09:17] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  944. # [09:17] * Quits: lpy (lpy@B0577DE8.D41998AD.8C13C571.IP) (Client exited)
  945. # [09:17] <glazou> glandium: ah?
  946. # [09:18] * whimboo|afk is now known as whimboo
  947. # [09:18] * Joins: tzimmermann (tzimmerman@moz-84E0BDB9.pools.arcor-ip.net)
  948. # [09:19] * Joins: lpy (lpy@B0577DE8.D41998AD.8C13C571.IP)
  949. # [09:23] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  950. # [09:24] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  951. # [09:25] * Joins: givanica (givanica@10A1FAD2.178D9C02.FB866788.IP)
  952. # [09:25] * Joins: darktrojan (geoff@moz-D5C665A2.dsl.telstraclear.net)
  953. # [09:26] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  954. # [09:26] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  955. # [09:27] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  956. # [09:27] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  957. # [09:28] * Joins: Jackneill (Jackneill@moz-4F3809C5.pool.digikabel.hu)
  958. # [09:28] * Joins: gsvelto (gsvelto@moz-4C54A775.clienti.tiscali.it)
  959. # [09:30] * Joins: matthewgertner (matthewger@173F2E9D.96442F2E.EE1C58A.IP)
  960. # [09:32] * Fallen is now known as Fallen|away
  961. # [09:35] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Ping timeout)
  962. # [09:35] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Quit: elin)
  963. # [09:36] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  964. # [09:38] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  965. # [09:40] * Joins: vchang (Vincent@moz-99690620.hinet-ip.hinet.net)
  966. # [09:40] * Joins: vchang_ (Vincent@moz-99690620.hinet-ip.hinet.net)
  967. # [09:41] * Quits: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  968. # [09:42] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  969. # [09:43] * Joins: jwwang (jwwang@moz-99690620.hinet-ip.hinet.net)
  970. # [09:43] * Joins: dbaron (dbaron@moz-104CC309.mv.mozilla.com)
  971. # [09:43] * ChanServ sets mode: +ao dbaron dbaron
  972. # [09:47] * Quits: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP) (Quit: RealRaven)
  973. # [09:47] * Joins: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP)
  974. # [09:48] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Quit: elin)
  975. # [09:49] * Joins: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP)
  976. # [09:49] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  977. # [09:50] * Joins: fredw (fredw@moz-B9C110E2.fbx.proxad.net)
  978. # [09:54] * Joins: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com)
  979. # [09:55] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  980. # [09:58] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  981. # [09:59] * Quits: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP) (Quit: RealRaven)
  982. # [09:59] * Joins: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP)
  983. # [09:59] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  984. # [10:01] * julienw_afk is now known as julienw
  985. # [10:02] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  986. # [10:02] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Quit: AFK)
  987. # [10:02] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  988. # [10:05] * Joins: _AtilA_ (atila@8115C16.8A6572E7.C4DEE87F.IP)
  989. # [10:06] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  990. # [10:06] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  991. # [10:07] * Quits: lpy (lpy@B0577DE8.D41998AD.8C13C571.IP) (Client exited)
  992. # [10:08] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  993. # [10:08] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  994. # [10:09] * Joins: edmorley (~edmorleys@moz-8F6F2E9.cable.virginm.net)
  995. # [10:10] * Joins: willyaranda (willyarand@moz-E9433E44.red-95-122-172.staticip.rima-tde.net)
  996. # [10:10] * Joins: b10n1k (j0ni@moz-853B7B67.ath.forthnet.gr)
  997. # [10:11] * Joins: dao (dao@moz-953930A1.superkabel.de)
  998. # [10:12] * whimboo is now known as whimboo|afk
  999. # [10:12] * pmoore|away is now known as pmoore
  1000. # [10:12] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1001. # [10:13] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1002. # [10:13] * whimboo|afk is now known as whimboo
  1003. # [10:14] * Quits: birtles (chatzilla@moz-C286AD9A.bitcat.net) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
  1004. # [10:16] * Quits: Ms2ger (Ms2ger@moz-EA6EE9F3.adsl-dyn.isp.belgacom.be) (Quit: bbl)
  1005. # [10:17] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1006. # [10:17] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  1007. # [10:19] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  1008. # [10:19] * Joins: jrm2k6 (jrm2k6@moz-789DBFB8.vodafone.hu)
  1009. # [10:21] * Quits: jrm2k6 (jrm2k6@moz-789DBFB8.vodafone.hu) (Client exited)
  1010. # [10:21] * Joins: jrm2k6 (jrm2k6@moz-789DBFB8.vodafone.hu)
  1011. # [10:21] * Quits: jrm2k6 (jrm2k6@moz-789DBFB8.vodafone.hu) (Connection reset by peer)
  1012. # [10:22] * Joins: lpy (lpy@B0577DE8.D41998AD.8C13C571.IP)
  1013. # [10:23] * Joins: robertbindar (Thunderbir@590D2376.7E118222.89C0DD0D.IP)
  1014. # [10:24] * Quits: lizzard (ehenry@moz-A3C04F1.hsd1.or.comcast.net) (Quit: lizzard)
  1015. # [10:25] * Parts: aja (Instantbir@B656FB68.80184A0A.7880DB15.IP)
  1016. # [10:25] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1017. # [10:26] * Joins: janv (varga@B8FBB6B4.73D44C34.4F33160D.IP)
  1018. # [10:27] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1019. # [10:28] * Joins: briansmith (briansmith@moz-1111329D.meeting.ietf.org)
  1020. # [10:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ca17e1dd094c - Robert Longson - Bug 935902 - Fix access to filter standard attributes for gaussian blur and component transfer. r=jwatt
  1021. # [10:30] * capella|away is now known as capella
  1022. # [10:30] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1023. # [10:31] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1024. # [10:32] * Quits: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  1025. # [10:33] * Joins: Optimizer1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  1026. # [10:33] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  1027. # [10:34] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1028. # [10:36] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Ping timeout)
  1029. # [10:36] * Quits: briansmith (briansmith@moz-1111329D.meeting.ietf.org) (Ping timeout)
  1030. # [10:37] * Joins: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu)
  1031. # [10:37] * Quits: Optimizer1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Connection reset by peer)
  1032. # [10:38] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1033. # [10:38] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Quit: AFK)
  1034. # [10:39] * Quits: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu) (Connection reset by peer)
  1035. # [10:39] * Joins: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu)
  1036. # [10:39] * Joins: msucan (mihai@A32D8D5F.924321AE.C0E37CF3.IP)
  1037. # [10:43] * Joins: jandem (jandem@66C76B89.FB8EABAE.DF9376EA.IP)
  1038. # [10:44] * Quits: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu) (Client exited)
  1039. # [10:44] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1040. # [10:44] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1041. # [10:45] * Quits: ckitching (ckitching@moz-73BD1AA5.nat.csx.cam.ac.uk) (Ping timeout)
  1042. # [10:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/22237babbbf9 - Jan de Mooij - Bug 933798 - Don't inhibit name optimizations in try blocks. r=bhackett
  1043. # [10:46] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Ping timeout)
  1044. # [10:47] * Quits: rcampbelllaos (rcampbelll@4E2A0F7D.6736A1A3.E8916D75.IP) (Quit: Leaving)
  1045. # [10:49] * julienw is now known as julienw_afk
  1046. # [10:49] * julienw_afk is now known as julienw
  1047. # [10:50] * Quits: juanb|afk (jbecerra@moz-F1012875.hsd1.ca.comcast.net) (Quit: juanb|afk)
  1048. # [10:51] * Quits: b10n1k (j0ni@moz-853B7B67.ath.forthnet.gr) (Client exited)
  1049. # [10:52] * Joins: tessarakt2 (jens@moz-8B45C6C2.dip0.t-ipconnect.de)
  1050. # [10:55] * Joins: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk)
  1051. # [11:00] * julienw is now known as julienw_afk
  1052. # [11:00] * Quits: janv (varga@B8FBB6B4.73D44C34.4F33160D.IP) (Quit: This computer has gone to sleep)
  1053. # [11:01] * Quits: lpy (lpy@B0577DE8.D41998AD.8C13C571.IP) (Client exited)
  1054. # [11:02] * Quits: atsai (atsai@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1055. # [11:03] * Quits: tessarakt2 (jens@moz-8B45C6C2.dip0.t-ipconnect.de) (Ping timeout)
  1056. # [11:04] * Joins: gabor (gabor@moz-FD07DCCF.pool.digikabel.hu)
  1057. # [11:05] * ewong is now known as ewong|away
  1058. # [11:07] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Quit: elin)
  1059. # [11:07] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1060. # [11:07] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1061. # [11:07] * Quits: mcsmurf (mcsmurf@moz-BD424B71.dip0.t-ipconnect.de) (Input/output error)
  1062. # [11:07] * Quits: robertbindar (Thunderbir@590D2376.7E118222.89C0DD0D.IP) (Ping timeout)
  1063. # [11:08] * Quits: heftig (heftig@moz-76BC6A3B.dip0.t-ipconnect.de) (Quit: Quitting)
  1064. # [11:09] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1065. # [11:09] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1066. # [11:09] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  1067. # [11:10] * Joins: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk)
  1068. # [11:10] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1069. # [11:11] * Quits: mjh563 (mjh563@moz-E385BD04.cable.virginm.net) (Ping timeout)
  1070. # [11:14] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1071. # [11:15] * Joins: cabanier (cabanier@1F6338E1.8113CFC0.D308573B.IP)
  1072. # [11:16] <gcp> do we have a component for offline storage?
  1073. # [11:16] <NeilAway> sfink: re rack-mounted devs, some racks are better rated than others ;-)
  1074. # [11:17] * Quits: mstange (markus@moz-2FD71193.dip0.t-ipconnect.de) (Ping timeout)
  1075. # [11:17] * Quits: cabanier (cabanier@1F6338E1.8113CFC0.D308573B.IP) (Ping timeout)
  1076. # [11:17] * Joins: mstange (markus@moz-76BBBB45.dip0.t-ipconnect.de)
  1077. # [11:19] * Quits: tomatoeblue (textual@moz-5C3A2631.cpe.distributel.net) (Quit: Computer has gone to sleep.)
  1078. # [11:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/125d0f9767b5 - Jon Coppeard - Bug 926678 - Ensure GC gets triggered when gcMallocBytes drops below zero r=billm
  1079. # [11:19] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/264184ace1e1 - Jon Coppeard - Bug 935903 - Unmark shared script data at start of GC r=billm
  1080. # [11:25] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1081. # [11:26] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Max SendQ exceeded)
  1082. # [11:26] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1083. # [11:27] * Joins: Ms2ger (Ms2ger@moz-4FC8E205.ugent.be)
  1084. # [11:28] * Joins: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP)
  1085. # [11:31] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Quit: leaving)
  1086. # [11:31] * Quits: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com) (Input/output error)
  1087. # [11:33] * Quits: mchen (chatzilla@moz-99690620.hinet-ip.hinet.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
  1088. # [11:34] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  1089. # [11:34] * Quits: schien (anonymous@moz-99690620.hinet-ip.hinet.net) (Quit: schien)
  1090. # [11:35] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1091. # [11:36] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Quit: Konversation terminated!)
  1092. # [11:36] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Ping timeout)
  1093. # [11:36] * julienw_afk is now known as julienw
  1094. # [11:39] <jwatt> can someone on linux/windows take a look at this on latest Nightly and tell me what you see: https://jwatt.org/tmp/zero-length-path-canvas.html
  1095. # [11:40] <jwatt> empty/non-empty grid?
  1096. # [11:41] <gcp> grid with dots
  1097. # [11:41] <gcp> (win7)
  1098. # [11:41] <jwatt> oh, interesting
  1099. # [11:41] <jwatt> thanks, gcp
  1100. # [11:41] <jwatt> anyone on linux?
  1101. # [11:41] <jwatt> gcp: which cells have dots?
  1102. # [11:42] <gcp> uw, lowest row, center
  1103. # [11:42] <gcp> 2nd row, center
  1104. # [11:43] <gcp> 6 center cells
  1105. # [11:43] <gcp> should I take a pic? :P
  1106. # [11:43] <jwatt> gcp: if you don't mind :)
  1107. # [11:43] * Joins: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu)
  1108. # [11:44] <gcp> https://dl.dropboxusercontent.com/u/32496746/dotsdots.png
  1109. # [11:44] * Joins: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1110. # [11:44] * Quits: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu) (Connection reset by peer)
  1111. # [11:45] * Joins: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu)
  1112. # [11:45] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1113. # [11:46] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  1114. # [11:46] * Quits: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu) (Client exited)
  1115. # [11:46] <jwatt> gcp: that's just weird
  1116. # [11:46] <jwatt> gcp: thanks a lot
  1117. # [11:46] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1118. # [11:48] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Ping timeout)
  1119. # [11:49] * Joins: darkowlzz (sunny@EB4F8F64.75850609.25B273F5.IP)
  1120. # [11:50] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Connection reset by peer)
  1121. # [11:50] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1122. # [11:50] * Quits: @dbaron (dbaron@moz-104CC309.mv.mozilla.com) (Ping timeout)
  1123. # [11:50] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d8df595005dc - Robert Longson - Test for bug 935994 r=jwatt,bas
  1124. # [11:50] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1125. # [11:50] * ChanServ sets mode: +o smaug
  1126. # [11:52] * Quits: dao (dao@moz-953930A1.superkabel.de) (Connection reset by peer)
  1127. # [11:53] * Quits: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP) (Quit: RealRaven)
  1128. # [11:53] <timdream> Tomcat|sheriffduty: ping
  1129. # [11:54] * Joins: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP)
  1130. # [11:54] <timdream> Tomcat|sheriffduty: we need to back out https://bugzilla.mozilla.org/show_bug.cgi?id=932151 because of https://bugzilla.mozilla.org/show_bug.cgi?id=936324
  1131. # [11:54] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1132. # [11:54] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1133. # [11:55] <Ms2ger> edmorley, ^
  1134. # [11:56] * Joins: tomer (tomer@DD5F0006.6A659BDF.FC30AC02.IP)
  1135. # [11:56] <edmorley> looking
  1136. # [11:56] <edmorley> timdream: so backout https://hg.mozilla.org/mozilla-central/rev/f2ed6b24269a ?
  1137. # [11:56] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Client exited)
  1138. # [11:56] <edmorley> timdream: does the gaia landing need backing out too?
  1139. # [11:57] <timdream> edmorley: yes
  1140. # [11:57] <timdream> edmorley: the gaia part is not landed yet
  1141. # [11:57] * Quits: tomer (tomer@DD5F0006.6A659BDF.FC30AC02.IP) (Connection reset by peer)
  1142. # [11:57] <edmorley> timdream: ok :-)
  1143. # [11:57] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1144. # [11:57] * Quits: m_kato (m_kato@moz-C286AD9A.bitcat.net) (Quit: Leaving...)
  1145. # [11:57] * Joins: pauly (paul@601F3B17.33662590.A5830293.IP)
  1146. # [11:57] <Tomcat|sheriffduty> ok :)
  1147. # [11:58] <Tomcat|sheriffduty> edmorley: are you working on the backout or shall do i :)
  1148. # [11:58] <edmorley> Tomcat|sheriffduty: got it :-)
  1149. # [11:58] <Tomcat|sheriffduty> cool
  1150. # [11:59] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Ping timeout)
  1151. # [11:59] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/f003c386c77a - Ed Morley - Backed out changeset f2ed6b24269a (bug 932151) for causing bug 936324
  1152. # [12:00] * Quits: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net) (Connection reset by peer)
  1153. # [12:00] <timdream> edmorley: so should bug 936324 be closed?
  1154. # [12:00] * Joins: tomer (tomer@DD5F0006.6A659BDF.FC30AC02.IP)
  1155. # [12:00] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  1156. # [12:01] * Quits: darktrojan (geoff@moz-D5C665A2.dsl.telstraclear.net) (Quit: darktrojan)
  1157. # [12:01] * Quits: shelly (shelly@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1158. # [12:02] <edmorley> timdream: I'll update the bugs in a sec
  1159. # [12:02] * simone|away is now known as simone
  1160. # [12:04] * Joins: cabanier1 (cabanier@C06569F1.3B2AAAA6.D750867A.IP)
  1161. # [12:04] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1162. # [12:05] * Quits: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP) (Ping timeout)
  1163. # [12:05] * Quits: markh (Instantbir@moz-2A36823E.bjzv3.vic.bigpond.net.au) (Ping timeout)
  1164. # [12:05] * Quits: KenChang (KenChang@moz-99690620.hinet-ip.hinet.net) (Client exited)
  1165. # [12:05] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1166. # [12:06] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1167. # [12:06] * Quits: cabanier1 (cabanier@C06569F1.3B2AAAA6.D750867A.IP) (Quit: Leaving.)
  1168. # [12:07] <timdream> edmorley: thanks!
  1169. # [12:07] <edmorley> timdream: np :-)
  1170. # [12:08] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1171. # [12:08] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  1172. # [12:09] * Joins: markh (Instantbir@64DAEF2D.AEC2FED6.78BA16EF.IP)
  1173. # [12:09] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1174. # [12:09] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1175. # [12:10] * Joins: tomatoeblue (textual@moz-5C3A2631.cpe.distributel.net)
  1176. # [12:11] * baku|away is now known as baku
  1177. # [12:12] * simone is now known as simone|away
  1178. # [12:12] * Joins: teoli (teoli@514D186.F3BBB17D.144F44FA.IP)
  1179. # [12:13] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1180. # [12:14] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Quit: Edgar)
  1181. # [12:15] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1182. # [12:15] * Quits: Ms2ger (Ms2ger@moz-4FC8E205.ugent.be) (Quit: bbl)
  1183. # [12:16] * Joins: horiaolaru (uid15701@moz-31ABA2C0.irccloud.com)
  1184. # [12:16] * Joins: heftig (heftig@moz-E8E2034C.inf.fh-bonn-rhein-sieg.de)
  1185. # [12:17] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1186. # [12:17] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1187. # [12:18] * Quits: jaoo (user@D2C2BC94.8E33A67F.F2D53343.IP) (Quit: ERC Version 5.3 (IRC client for Emacs))
  1188. # [12:18] * simone|away is now known as simone
  1189. # [12:19] * Joins: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu)
  1190. # [12:20] * mattwoodrow|away is now known as mattwoodrow
  1191. # [12:20] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1192. # [12:21] * Joins: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP)
  1193. # [12:21] <Yoric> !seen roc
  1194. # [12:21] <firebot> roc was last seen 2 days, 8 hours, 41 minutes and 34 seconds ago, saying 'it's very compact, but it does mean you have to walk the entire region to do almost anything. AFAICT.' in #gfx.
  1195. # [12:23] * Quits: markh (Instantbir@64DAEF2D.AEC2FED6.78BA16EF.IP) (Ping timeout)
  1196. # [12:23] * Joins: markh (Instantbir@64DAEF2D.AEC2FED6.78BA16EF.IP)
  1197. # [12:24] * Quits: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  1198. # [12:24] * Quits: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  1199. # [12:25] * Joins: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net)
  1200. # [12:25] * Quits: RealRaven (Thunderbir@99CE2358.5F5E7745.27F80FAC.IP) (Ping timeout)
  1201. # [12:27] * Quits: stransky (stransky@moz-59D79C36.broadband2.iol.cz) (Connection reset by peer)
  1202. # [12:28] * Quits: timdream (timdream@moz-99690620.hinet-ip.hinet.net) (Quit: timdream)
  1203. # [12:28] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  1204. # [12:28] * Joins: RealRaven (Thunderbir@26AD1735.4252301D.C3498625.IP)
  1205. # [12:28] * Quits: Jerry (hshih@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1206. # [12:29] * Quits: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu) (Client exited)
  1207. # [12:29] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1208. # [12:30] <hsivonen> does mozalloc build OK for others using clang on Linux?
  1209. # [12:30] * Joins: RattyAway (Jim_diGriz@8F2B84D7.587715E1.FB243CD8.IP)
  1210. # [12:30] <RattyAway> !seen RyanVM
  1211. # [12:30] <firebot> ryanvm was last seen 12 hours, 25 minutes and 33 seconds ago, changing nick to RyanVM|afk.
  1212. # [12:30] * RattyAway sighs
  1213. # [12:31] <Tomcat|sheriffduty> hi RattyAway can we help ?
  1214. # [12:31] <hsivonen> latest clang from svn fails with ../../dist/include/mozilla/mozalloc.h:198:21: error: replacement function 'operator new' cannot be declared 'inline'
  1215. # [12:31] <hsivonen> is there a known-good clang revision?
  1216. # [12:31] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Ping timeout)
  1217. # [12:31] <RattyAway> Tomcat|sheriffduty: nah but thanks for the offer anyway. cheers.
  1218. # [12:31] * Parts: RattyAway (Jim_diGriz@8F2B84D7.587715E1.FB243CD8.IP)
  1219. # [12:32] <hsivonen> I just pulled from svn, because the old clang revision I used crashed during a build and it seemed useless to troubleshoot a crash with a months-old build
  1220. # [12:32] <Tomcat|sheriffduty> :)
  1221. # [12:35] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  1222. # [12:37] * Quits: jcranmer|away (jtcranmer@moz-EBF2B4AB.cs.illinois.edu) (Ping timeout)
  1223. # [12:37] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1224. # [12:37] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Ping timeout)
  1225. # [12:38] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1226. # [12:38] * Quits: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1227. # [12:38] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1228. # [12:38] * mattwoodrow is now known as mattwoodrow|away
  1229. # [12:40] * Joins: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net)
  1230. # [12:40] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1231. # [12:40] * Quits: mwargers (chatzilla@moz-AF369B35.adsl.online.nl) (Ping timeout)
  1232. # [12:43] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  1233. # [12:43] <@smaug> hsivonen: which clang version was bad? I was just about to try clang again
  1234. # [12:43] <@smaug> hmm, maybe I could use clang for debug builds and gcc for opt
  1235. # [12:43] <@smaug> assuming clang is faster
  1236. # [12:44] * Quits: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP) (Quit: Leaving.)
  1237. # [12:46] * Quits: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1238. # [12:46] * Joins: janv (varga@B8FBB6B4.73D44C34.4F33160D.IP)
  1239. # [12:49] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  1240. # [12:49] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Quit: AFK)
  1241. # [12:50] * Joins: jcranmer|away (jtcranmer@moz-EBF2B4AB.cs.illinois.edu)
  1242. # [12:50] * Joins: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP)
  1243. # [12:51] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  1244. # [12:53] * Quits: jhlin (jolin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1245. # [12:53] * Joins: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1246. # [12:53] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1247. # [12:54] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1248. # [12:57] * Quits: darkowlzz (sunny@EB4F8F64.75850609.25B273F5.IP) (Ping timeout)
  1249. # [12:58] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1250. # [12:58] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1251. # [13:00] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1252. # [13:00] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1253. # [13:00] * Joins: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1254. # [13:02] * Joins: mjh563 (mjh563@moz-E385BD04.cable.virginm.net)
  1255. # [13:02] <hsivonen> smaug: llvm rev 194251 and clang rev 194250 failed for me
  1256. # [13:02] <hsivonen> smaug: the latest as of a couple of hours ago
  1257. # [13:03] <hsivonen> smaug: the revs that crashed for me were from January
  1258. # [13:04] * Quits: petruta (Mibbit@601F3B17.33662590.A5830293.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1259. # [13:04] <@smaug> ah
  1260. # [13:04] <@smaug> looks like Fedora 18 has 3.3
  1261. # [13:05] <@smaug> from June or July
  1262. # [13:05] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1263. # [13:06] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1264. # [13:06] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Client exited)
  1265. # [13:06] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1266. # [13:06] * Joins: Pike (chatzilla@moz-E853053D.pool.mediaways.net)
  1267. # [13:07] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1268. # [13:07] * Joins: till (till@moz-A7BAAD81.adsl.alicedsl.de)
  1269. # [13:08] * Joins: petruta (Mibbit@601F3B17.33662590.A5830293.IP)
  1270. # [13:08] * Joins: ericb2 (X@moz-9C4C3DED.fbx.proxad.net)
  1271. # [13:08] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Ping timeout)
  1272. # [13:08] * Joins: pbocan (Thunderbir@moz-C4C0C08B.eduroam.fit.cvut.cz)
  1273. # [13:08] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  1274. # [13:10] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1275. # [13:12] * Joins: jez (user@moz-1B119F78.dsl.in-addr.zen.co.uk)
  1276. # [13:12] <jez> why are there batch files like start-msvc9.bat in the MozillaBuild package if those compilers are no longer supported by the build system?
  1277. # [13:12] * Quits: RealRaven (Thunderbir@26AD1735.4252301D.C3498625.IP) (Quit: RealRaven)
  1278. # [13:12] * Joins: RealRaven (Thunderbir@26AD1735.4252301D.C3498625.IP)
  1279. # [13:13] * Quits: willyaranda (willyarand@moz-E9433E44.red-95-122-172.staticip.rima-tde.net) (Ping timeout)
  1280. # [13:14] <NeilAway> hsivonen: I seem to recall there's a bug filed for those inline operator new errors
  1281. # [13:15] * Joins: jaoo (user@moz-B96A91B0.red-95-125-57.staticip.rima-tde.net)
  1282. # [13:15] * Joins: darkowlzz (sunny@2D730B43.15D34F31.27560D6E.IP)
  1283. # [13:16] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1284. # [13:25] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1285. # [13:26] <edmorley> jez: https://bugzilla.mozilla.org/show_bug.cgi?id=872018
  1286. # [13:26] * Quits: jaoo (user@moz-B96A91B0.red-95-125-57.staticip.rima-tde.net) (Ping timeout)
  1287. # [13:26] <jez> hmm i see
  1288. # [13:28] * Joins: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu)
  1289. # [13:30] * Joins: Ms2ger (Ms2ger@moz-EA6EE9F3.adsl-dyn.isp.belgacom.be)
  1290. # [13:32] * Quits: gabor (gabor@moz-FD07DCCF.pool.digikabel.hu) (Ping timeout)
  1291. # [13:33] * Quits: teoli (teoli@514D186.F3BBB17D.144F44FA.IP) (Input/output error)
  1292. # [13:34] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/8cc5f8a66d80 - Brandon Benvie - Bug 862849 - Remove __iterator__ use from the devtools. r=vp
  1293. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/920007547b4c - Carsten "Tomcat" Book - merge fx-team to mozilla-central
  1294. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/4ee49067a5c6 - Anton Kovalyov - Bug 929234 - Make CodeMirror extraKeys localizable. r=vporof
  1295. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/38b01389507d - Dave Townsend - Bug 932361: Avoid using too many file handles during XPI extraction. r=Unfocused
  1296. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/9bfc039b9262 - J. Ryan Stinnett - Bug 912918 - Part 3: Keep validating after errors when possible. r=paul
  1297. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/b5bb24894892 - J. Ryan Stinnett - Bug 912918 - Part 2: Display warnings and errors if both are present. r=paul
  1298. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/85b3a8bd9100 - Wes Kocher - Merge m-c to fx-team
  1299. # [13:34] <firebot> http://hg.mozilla.org/mozilla-central/rev/74303a630bea - J. Ryan Stinnett - Bug 912918 - Part 1: Code style cleanups in app validator. r=paul
  1300. # [13:35] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  1301. # [13:35] * Joins: thej (chatzilla@637D4CD0.BF84E432.1C37C358.IP)
  1302. # [13:36] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  1303. # [13:36] * bc|afk is now known as bc
  1304. # [13:37] * Joins: ctangira_ (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net)
  1305. # [13:37] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Ping timeout)
  1306. # [13:38] * Joins: bogdan_maris (Mibbit@FADE14F0.B657E160.FFF31605.IP)
  1307. # [13:39] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1308. # [13:40] * Joins: gabor (gabor@moz-FD07DCCF.pool.digikabel.hu)
  1309. # [13:40] * Joins: gustavold (gustavold@BE8A4BEE.683D0019.DF2AC62B.IP)
  1310. # [13:41] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1311. # [13:41] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1312. # [13:43] <nical> Is it possible to clone a the revision of a try push directly ?
  1313. # [13:44] * Quits: blassey (blassey@moz-CD7D4667.hsd1.ma.comcast.net) (Input/output error)
  1314. # [13:44] * Joins: blassey (blassey@moz-CD7D4667.hsd1.ma.comcast.net)
  1315. # [13:46] * Quits: heftig (heftig@moz-E8E2034C.inf.fh-bonn-rhein-sieg.de) (Ping timeout)
  1316. # [13:46] * Quits: ctangira_ (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net) (Quit: ctangira_)
  1317. # [13:47] * Quits: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP) (Quit: Leaving.)
  1318. # [13:48] <Ms2ger> nical, hg clone -r rev try
  1319. # [13:48] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1320. # [13:48] <jez> hi all, I'm trying to follow the build instructions here: https://developer.mozilla.org/en-US/docs/Simple_SeaMonkey_build
  1321. # [13:48] * Quits: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu) (Client exited)
  1322. # [13:48] <jez> it says how to get the required libraries on Ubuntu, but not on Debian. how do i do it on debian?
  1323. # [13:49] * Joins: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu)
  1324. # [13:49] <Ms2ger> Try if the instructions for ubuntu work? :)
  1325. # [13:49] * whimboo is now known as whimboo|afk
  1326. # [13:49] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1327. # [13:49] * Quits: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu) (Connection reset by peer)
  1328. # [13:49] <nical> Ms2ger: awesome, thanks
  1329. # [13:49] * Quits: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP) (Quit: Leaving.)
  1330. # [13:49] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  1331. # [13:49] * Joins: heftig (heftig@moz-E8E2034C.inf.fh-bonn-rhein-sieg.de)
  1332. # [13:50] * Joins: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu)
  1333. # [13:50] <jez> would "sudo apt-get build-dep iceape" work?
  1334. # [13:50] <jez> there's no seamonkey package for debian obviously
  1335. # [13:52] * Quits: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu) (Ping timeout)
  1336. # [13:52] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1337. # [13:52] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Quit: Leaving.)
  1338. # [13:53] * Joins: zzzzz (chatzilla@moz-609E4EC0.dhcp.embarqhsd.net)
  1339. # [13:54] * Joins: rwaldron (rwaldron@moz-57519E7C.nycmny.fios.verizon.net)
  1340. # [13:55] * Quits: tomatoeblue (textual@moz-5C3A2631.cpe.distributel.net) (Quit: Computer has gone to sleep.)
  1341. # [13:57] * Quits: decoder (quassel@moz-D7023D7D.own-hero.net) (Quit: No Ping reply in 180 seconds.)
  1342. # [13:57] * Joins: decoder (quassel@moz-D7023D7D.own-hero.net)
  1343. # [13:59] * Joins: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net)
  1344. # [13:59] * Joins: KaiRo (robert@moz-9482061C.adsl.highway.telekom.at)
  1345. # [14:00] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  1346. # [14:01] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  1347. # [14:03] * Quits: pauly (paul@601F3B17.33662590.A5830293.IP) (Quit: pauly)
  1348. # [14:04] * Joins: mikeratcliffe (Adium@7537446E.B4204005.C3DDD137.IP)
  1349. # [14:05] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  1350. # [14:05] * Quits: stransky (stransky@moz-59D79C36.broadband2.iol.cz) (Quit: Connection reset by beer)
  1351. # [14:05] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1352. # [14:07] * Joins: rogeliodh (Thunderbir@C028F7D5.E9836DFB.D67CC001.IP)
  1353. # [14:07] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1354. # [14:08] * Joins: willyaranda (willyarand@894C8956.5CBA1E6C.C93B3C04.IP)
  1355. # [14:09] * Joins: jkitch (Thunderbir@moz-1F5FEFE4.lns20.adl2.internode.on.net)
  1356. # [14:12] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  1357. # [14:12] * sankha93 is now known as sankha93|afk
  1358. # [14:14] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  1359. # [14:15] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1360. # [14:18] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  1361. # [14:19] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1362. # [14:20] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1363. # [14:21] <froydnj> hsivonen: trunk clang has issues with mozilla, 3.3 is recommended for the moment
  1364. # [14:22] * Quits: RealRaven (Thunderbir@26AD1735.4252301D.C3498625.IP) (Quit: RealRaven)
  1365. # [14:22] <froydnj> hsivonen: bug 928808 if you want to follow along
  1366. # [14:22] * Joins: RealRaven (Thunderbir@26AD1735.4252301D.C3498625.IP)
  1367. # [14:23] * Joins: teoli (teoli@514D186.F3BBB17D.144F44FA.IP)
  1368. # [14:24] * Quits: simo (simo@983EAD2B.E732E731.8A1F9AD.IP) (Ping timeout)
  1369. # [14:25] * Quits: gsvelto (gsvelto@moz-4C54A775.clienti.tiscali.it) (Quit: Leaving)
  1370. # [14:27] * simone is now known as simone|away
  1371. # [14:27] <@smaug> for the first time clang managed to be a bit faster than gcc
  1372. # [14:29] * rail_away is now known as rail
  1373. # [14:31] * Joins: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net)
  1374. # [14:31] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  1375. # [14:31] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1376. # [14:35] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  1377. # [14:36] * Joins: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net)
  1378. # [14:36] * Joins: jimm (jmathies@moz-F22D2B2A.pn.at.cox.net)
  1379. # [14:36] * Joins: areinald (areinald@22BDA43C.45B1B57.95BF40E5.IP)
  1380. # [14:36] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1381. # [14:38] * Quits: dmarcos_ (dmarcos@moz-F7958F77.dsl.static.sonic.net) (Ping timeout)
  1382. # [14:39] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  1383. # [14:39] * Joins: Edgar (Thunderbir@moz-FC3E834D.dynamic.hinet.net)
  1384. # [14:39] * Joins: simo (simo@44A7F04A.8EB87DB5.8A1F9AD.IP)
  1385. # [14:39] * Parts: areinald (areinald@22BDA43C.45B1B57.95BF40E5.IP)
  1386. # [14:39] * simone|away is now known as simone
  1387. # [14:40] * Quits: sheppy (uid12424@moz-5F4AA75A.irccloud.com) (Quit: )
  1388. # [14:40] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1389. # [14:41] * sheppy-offline is now known as sheppy
  1390. # [14:41] * Joins: dbaron (dbaron@moz-104CC309.mv.mozilla.com)
  1391. # [14:41] * ChanServ sets mode: +ao dbaron dbaron
  1392. # [14:42] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  1393. # [14:42] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1394. # [14:43] * Quits: @dbaron (dbaron@moz-104CC309.mv.mozilla.com) (Ping timeout)
  1395. # [14:44] * bz_sleep is now known as bz
  1396. # [14:44] * Quits: vendo (chatzilla@6D7CE8E4.CE4DDBE6.300931B2.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 25.0/20131025151332])
  1397. # [14:45] * Joins: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com)
  1398. # [14:45] * Joins: armenzg (armenzg@moz-DC6D6B46.home1.cgocable.net)
  1399. # [14:47] * Joins: ctangira_ (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net)
  1400. # [14:48] * Joins: bholley (anonymous@moz-A2189431.hsd1.ca.comcast.net)
  1401. # [14:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/92499f6abfa8 - Brian Hackett - Bug 936004 - Trace template object in JSOP_REST caches, r=jandem.
  1402. # [14:49] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1403. # [14:49] * Joins: grapenuts (chatzilla@moz-B38E5938.dhcp.plbg.ny.charter.com)
  1404. # [14:49] * Joins: mwargers (chatzilla@moz-AF369B35.adsl.online.nl)
  1405. # [14:52] * Joins: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com)
  1406. # [14:53] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1407. # [14:53] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  1408. # [14:54] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  1409. # [14:54] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1410. # [14:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dddedd0e55ad - Ehsan Akhgari - Bug 936445 - Remove some unused variables from the parser code; r=hsivonen
  1411. # [14:57] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1412. # [14:57] * Quits: rwaldron (rwaldron@moz-57519E7C.nycmny.fios.verizon.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1413. # [14:59] * Joins: HasilSharma (hasil@B32ABED.6C6281B2.328B0197.IP)
  1414. # [15:00] * Joins: ahal (ahal@moz-94F07FF4.cable.teksavvy.com)
  1415. # [15:01] * armenzg is now known as armenzg_brb
  1416. # [15:02] * Quits: petruta (Mibbit@601F3B17.33662590.A5830293.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1417. # [15:03] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  1418. # [15:03] * kats|away is now known as kats
  1419. # [15:04] * Joins: yzen (yzen@67828CC7.C1A51174.9D42CF23.IP)
  1420. # [15:04] * Joins: tomatoeblue (textual@13F2CEC5.7672369.D8E68FF6.IP)
  1421. # [15:04] <hsivonen> froydnj: thanks
  1422. # [15:05] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4c604a710122 - Ziga Seilnacht - Bug 935050 - Manually flush native command's stdout and stderr, multiprocessing exits via os._exit. r=gps
  1423. # [15:05] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/049abc9d88a1 - Jaroslav Kopecký - Bug 936196 - Explicitly include unistd.h for getpid() on XP_UNIX. r=BenWa
  1424. # [15:05] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ac5cd57bbd04 - Ziga Seilnacht - Bug 782037 - Fix NameError with missing `depfinished` function when there is a makefile error. r=gps
  1425. # [15:05] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/41bec0e7bc30 - Ziga Seilnacht - Bug 874210 - Fix pymake stack depth issues when many targets and prerequisites are present. r=gps
  1426. # [15:05] * Quits: Edgar (Thunderbir@moz-FC3E834D.dynamic.hinet.net) (Ping timeout)
  1427. # [15:06] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1428. # [15:06] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1429. # [15:07] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1430. # [15:07] <@smaug> hmm, or perhaps I could use the OS.File or whatever it is called thing for this CC graph analyzer
  1431. # [15:07] <@smaug> Yoric: I assume we have documentation how to use that API
  1432. # [15:07] <@smaug> in a worker
  1433. # [15:07] <Yoric> Using OS.File is always a good idea :)
  1434. # [15:07] * Quits: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com) (Quit: lmandel)
  1435. # [15:07] * Joins: mkaply_ (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net)
  1436. # [15:07] * Quits: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  1437. # [15:08] <@smaug> well, I write JS very rarely
  1438. # [15:08] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  1439. # [15:08] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1440. # [15:08] <Yoric> smaug: There is documentation. Not fully up-to-date, but it's there https://developer.mozilla.org/en-US/docs/JavaScript_OS.File
  1441. # [15:08] <@smaug> thanks
  1442. # [15:08] * Joins: mikeratcliffe1 (Adium@7537446E.B4204005.C3DDD137.IP)
  1443. # [15:08] * Quits: mikeratcliffe (Adium@7537446E.B4204005.C3DDD137.IP) (Connection reset by peer)
  1444. # [15:08] <sheppy> Yoric: Yeah, OS.File is on one of our "Man, we need to find time to work on this documentation" lists.
  1445. # [15:09] <@smaug> Yoric: is there async API in workers or only sync?
  1446. # [15:09] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  1447. # [15:09] <Yoric> In the workers, it's only sync.
  1448. # [15:09] <@smaug> hmm
  1449. # [15:09] <@smaug> plans to add async?
  1450. # [15:09] <Yoric> Why, do you need something to be doubly-async?
  1451. # [15:10] <Yoric> Not really, until now, nobody has asked for this.
  1452. # [15:10] <@smaug> I want to keep the thing on worker side
  1453. # [15:10] <Yoric> Plus there isn't an implementation of Promise on workers yet.
  1454. # [15:10] <Yoric> So?
  1455. # [15:10] <@smaug> yet I need to be able to communicate efficiently with worker
  1456. # [15:10] <@smaug> at anytime
  1457. # [15:10] <@smaug> sync I/O means worker may be blocked for seconds
  1458. # [15:10] <Yoric> Correct.
  1459. # [15:11] <Yoric> So, basically, you want stuff to run in a sub-worker.
  1460. # [15:11] <Yoric> (or shared worker)
  1461. # [15:11] * simone is now known as simone|away
  1462. # [15:11] <Yoric> Not planned for the near future, but don't hesitate to file a bug.
  1463. # [15:11] <@smaug> shared worker wouldn't help, but subworker would indeed
  1464. # [15:12] <@smaug> hmm, thinking...
  1465. # [15:12] <@smaug> I'm processing massive amounts string data
  1466. # [15:12] <@smaug> and we don't share string data between threads
  1467. # [15:12] <@smaug> worker threads
  1468. # [15:13] <Yoric> No we don't.
  1469. # [15:13] * armenzg_brb is now known as armenzg
  1470. # [15:14] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  1471. # [15:14] * jhopkins|afk is now known as jhopkins|buildduty
  1472. # [15:14] <Yoric> smaug: If you want stuff to be transmitted efficiently, you'll need arraybuffers instead.
  1473. # [15:14] <Yoric> What are you doing, by the way?
  1474. # [15:14] <@smaug> I'm thinking to improve cycle collector graph analyzer, aka about:cc
  1475. # [15:14] <@smaug> (an addon)
  1476. # [15:15] <@smaug> currently it processes only non-allTraces() graphs
  1477. # [15:15] <Yoric> That's also always a good idea.
  1478. # [15:15] <@smaug> since allTraces() graphs are huge
  1479. # [15:15] * Joins: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  1480. # [15:15] <@smaug> we can dump allTraces() graphs to file
  1481. # [15:16] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1482. # [15:16] <@smaug> and I was thinking to process that in a worker
  1483. # [15:16] <@smaug> and do queries to that data from the main thread
  1484. # [15:17] * Quits: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP) (Ping timeout)
  1485. # [15:17] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  1486. # [15:18] * Joins: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP)
  1487. # [15:19] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Connection reset by peer)
  1488. # [15:19] * Joins: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  1489. # [15:19] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1490. # [15:20] * Quits: willyaranda (willyarand@894C8956.5CBA1E6C.C93B3C04.IP) (Ping timeout)
  1491. # [15:21] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  1492. # [15:21] * Quits: ctangira_ (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net) (Ping timeout)
  1493. # [15:21] * coop|afk is now known as coop
  1494. # [15:22] * Quits: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  1495. # [15:22] * Joins: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  1496. # [15:23] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1497. # [15:23] * Joins: ctangira (ctangira@moz-44402D73.cisco.com)
  1498. # [15:23] * Quits: thej (chatzilla@637D4CD0.BF84E432.1C37C358.IP) (Client exited)
  1499. # [15:23] * Joins: willyaranda (willyarand@894C8956.5CBA1E6C.C93B3C04.IP)
  1500. # [15:26] * Quits: msucan (mihai@A32D8D5F.924321AE.C0E37CF3.IP) (Ping timeout)
  1501. # [15:26] * Joins: petruta (Mibbit@601F3B17.33662590.A5830293.IP)
  1502. # [15:27] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  1503. # [15:28] * Quits: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP) (Ping timeout)
  1504. # [15:28] * Joins: ckitching (ckitching@moz-73BD1AA5.nat.csx.cam.ac.uk)
  1505. # [15:29] <froydnj> man, I wish we provided a way to get symbols for nightlies
  1506. # [15:29] * Joins: marcoz (marco.zehe@moz-EDA68E22.dip0.t-ipconnect.de)
  1507. # [15:29] * Joins: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP)
  1508. # [15:29] * Quits: mikeratcliffe1 (Adium@7537446E.B4204005.C3DDD137.IP) (Quit: Leaving.)
  1509. # [15:32] * jmaher|afk is now known as jmaher
  1510. # [15:32] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  1511. # [15:34] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1512. # [15:35] <dustin> Yoric: so my try runs for https://hg.mozilla.org/try/rev/2800745c0440 failed with errors like https://tbpl.mozilla.org/php/getParsedLog.php?id=30281071&tree=Try (note 10:09:18, uncaught exception)
  1513. # [15:35] <dustin> is that a likely outcome of using https://hg.mozilla.org/try/rev/2800745c0440#l1.12 in a worker?
  1514. # [15:36] <Yoric> dustin: That's very possible.
  1515. # [15:36] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  1516. # [15:36] <dustin> so.. how do I use URL from a worker?
  1517. # [15:37] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1518. # [15:37] * Joins: elin (elin@7B8CEC62.435A799.89D78A4.IP)
  1519. # [15:38] <Yoric> dustin: It should work out of the box.
  1520. # [15:38] <dustin> without the Components.utils.importGlobalProperties?
  1521. # [15:38] <Yoric> indeed
  1522. # [15:38] <Yoric> Anyway, Components is not defined in workers.
  1523. # [15:39] * Joins: cabanier (cabanier@C06569F1.3B2AAAA6.D750867A.IP)
  1524. # [15:39] * Joins: abr (abr@moz-D1AC7350.meeting.ietf.org)
  1525. # [15:40] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  1526. # [15:40] <@smaug> hmm, Worker doesn't support data: urls?
  1527. # [15:41] <dustin> Yoric: 0:21.82 TEST-UNEXPECTED-FAIL | resource://gre/modules/osfile/ospath_unix.jsm | ReferenceError: URL is not defined at resource://gre/modules/osfile/ospath_unix.jsm:175 - See following stack: :(
  1528. # [15:41] <dustin> should I re-open bug 920015?
  1529. # [15:41] * Joins: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu)
  1530. # [15:41] <Yoric> dustin: ...
  1531. # [15:41] * Quits: abr (abr@moz-D1AC7350.meeting.ietf.org) (Ping timeout)
  1532. # [15:41] <Yoric> I'm sure I use it in the implementation of the chrome worker module loader.
  1533. # [15:41] <Yoric> Let me check.
  1534. # [15:41] * Joins: kq_mob (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1535. # [15:41] * Quits: jandem (jandem@66C76B89.FB8EABAE.DF9376EA.IP) (Quit: jandem)
  1536. # [15:42] * Joins: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP)
  1537. # [15:42] <Yoric> dustin: http://dxr.mozilla.org/mozilla-central/source/toolkit/components/workerloader/require.js?from=require.js#l199
  1538. # [15:42] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1539. # [15:42] * Joins: msucan (mihai@F303864A.657C14B7.C0E37CF3.IP)
  1540. # [15:43] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1541. # [15:44] * Quits: elin (elin@7B8CEC62.435A799.89D78A4.IP) (Ping timeout)
  1542. # [15:44] <dustin> is the problem that the xpcshell tests do *not* run the functions in a worker thread?
  1543. # [15:44] <Yoric> Which test is that?
  1544. # [15:45] <Yoric> I mean, which one fails?
  1545. # [15:45] <dustin> https://hg.mozilla.org/try/rev/2800745c0440#l3.3
  1546. # [15:45] * Quits: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu) (Client exited)
  1547. # [15:45] * Joins: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu)
  1548. # [15:45] <dustin> full output - http://pastebin.mozilla.org/3455212
  1549. # [15:45] <Ms2ger> Workers in xpcshell?
  1550. # [15:45] <Yoric> Have you left the Components.utils.importGlobalProperties(["URL"]); when you're not running in a worker?
  1551. # [15:46] * padenot|pto is now known as padenot
  1552. # [15:46] * Quits: ggp (ggp@E7AA2D0F.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  1553. # [15:46] <Yoric> Ms2ger: Yep. bug 930924.
  1554. # [15:46] * Quits: petruta (Mibbit@601F3B17.33662590.A5830293.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1555. # [15:46] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  1556. # [15:46] <dustin> oh! so I should include that line in the test script, but not in the SUT
  1557. # [15:46] * padenot is now known as padenot|pto
  1558. # [15:46] * Quits: HasilSharma (hasil@B32ABED.6C6281B2.328B0197.IP) (Quit: Leaving.)
  1559. # [15:46] <dustin> seems obvious once I say it like that :)
  1560. # [15:46] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  1561. # [15:46] <Yoric> dustin: I believe that you should include it if Components is defined and not when Components isn't defined.
  1562. # [15:46] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  1563. # [15:46] * Joins: HasilSharma (hasil@B32ABED.6C6281B2.328B0197.IP)
  1564. # [15:47] * Quits: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com) (Quit: )
  1565. # [15:47] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  1566. # [15:47] <dustin> ah, ok
  1567. # [15:47] * Joins: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  1568. # [15:47] * Joins: elin (elin@7B8CEC62.435A799.89D78A4.IP)
  1569. # [15:47] * Quits: jrm2k6 (jrm2k6@moz-4595FC3D.prtelecom.hu) (Ping timeout)
  1570. # [15:48] * dustin runs a new try job -- I'll be back on Monday :)
  1571. # [15:48] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  1572. # [15:48] * Quits: kq_mob (nodebot@moz-937443ED.elisa-laajakaista.fi) (Client exited)
  1573. # [15:49] * Joins: jaoo (user@D2C2BC94.8E33A67F.F2D53343.IP)
  1574. # [15:49] <Yoric> :)
  1575. # [15:49] * Quits: cers (csonne@moz-D706C2D4.fullrate.dk) (Quit: Computer has gone to sleep.)
  1576. # [15:50] <Ms2ger> configure: error: pulseaudio audio backend requires libpulse development package
  1577. # [15:50] <Ms2ger> What for?
  1578. # [15:50] * Joins: mcote (mcote@moz-BF3F09D8.cpe.pppoe.ca)
  1579. # [15:50] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  1580. # [15:50] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1581. # [15:50] * Joins: cers (csonne@moz-D706C2D4.fullrate.dk)
  1582. # [15:51] <padenot|pto> to play sound?
  1583. # [15:52] <Ms2ger> Fascinating idea
  1584. # [15:52] * Joins: rwaldron (rwaldron@moz-57519E7C.nycmny.fios.verizon.net)
  1585. # [15:52] * Quits: mcote (mcote@moz-BF3F09D8.cpe.pppoe.ca) (Quit: leaving)
  1586. # [15:53] * Joins: dmarcos_ (dmarcos@D8E6918F.649F2F33.D4043753.IP)
  1587. # [15:53] * Joins: kq_mob (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1588. # [15:55] * Quits: msucan (mihai@F303864A.657C14B7.C0E37CF3.IP) (Ping timeout)
  1589. # [15:55] * Joins: spohl (Adium@345267B2.1B4F02A2.27500626.IP)
  1590. # [15:56] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  1591. # [15:56] * Quits: willyaranda (willyarand@894C8956.5CBA1E6C.C93B3C04.IP) (Quit: This computer has gone to sleep)
  1592. # [15:57] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1593. # [15:58] * Joins: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu)
  1594. # [15:58] * Joins: m_gol (m_gol@moz-4CB391B7.neoplus.adsl.tpnet.pl)
  1595. # [15:58] * Joins: msucan (mihai@50FD98E9.85233D2F.C0E37CF3.IP)
  1596. # [15:58] * Quits: kq_mob (nodebot@moz-937443ED.elisa-laajakaista.fi) (Input/output error)
  1597. # [16:00] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1598. # [16:02] * Joins: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1599. # [16:02] * Quits: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi) (Input/output error)
  1600. # [16:02] * Joins: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1601. # [16:02] * armenzg is now known as armenzg_brb
  1602. # [16:05] * Joins: mgol (m_gol@moz-4CB391B7.neoplus.adsl.tpnet.pl)
  1603. # [16:05] * Quits: mgol (m_gol@moz-4CB391B7.neoplus.adsl.tpnet.pl) (Client exited)
  1604. # [16:05] * Joins: mgol (m_gol@moz-4CB391B7.neoplus.adsl.tpnet.pl)
  1605. # [16:06] * Quits: m_gol (m_gol@moz-4CB391B7.neoplus.adsl.tpnet.pl) (Ping timeout)
  1606. # [16:06] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  1607. # [16:06] * Quits: bogdan_maris (Mibbit@FADE14F0.B657E160.FFF31605.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1608. # [16:07] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1609. # [16:07] * Joins: ggp (ggp@23E389F5.7CE419F9.1160D82E.IP)
  1610. # [16:07] * Quits: teoli (teoli@514D186.F3BBB17D.144F44FA.IP) (Input/output error)
  1611. # [16:07] * Joins: jgriffin (jgriffin@13F2CEC5.7672369.D8E68FF6.IP)
  1612. # [16:08] <NeilAway> froydnj: which OS?
  1613. # [16:09] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  1614. # [16:10] * Joins: teoli (teoli@514D186.F3BBB17D.144F44FA.IP)
  1615. # [16:11] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/cea821ee6e17 - Horia Iosif Olaru - Bug 841601 - Add background-blend-mode tests. r=roc
  1616. # [16:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fd52ed539580 - Horia Iosif Olaru - Bug 841601 - Add background-blend-mode implementation. r=roc
  1617. # [16:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ba2614a06884 - Horia Iosif Olaru - Bug 841601 - Add background-blend-mode to the style parsing mechanism. r=heycam
  1618. # [16:11] * Tomcat|sheriffduty is now known as Tomcat|afk
  1619. # [16:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a712c9fec54f - Horia Iosif Olaru - Bug 841601 - Add a second batch of tests for background-blending which tests each blend mode. r=roc
  1620. # [16:13] * Quits: heftig (heftig@moz-E8E2034C.inf.fh-bonn-rhein-sieg.de) (Quit: Quitting)
  1621. # [16:13] * Joins: heftig (heftig@moz-E8E2034C.inf.fh-bonn-rhein-sieg.de)
  1622. # [16:14] * Quits: jrm2k6 (jrm2k6@moz-9093109D.prtelecom.hu) (Client exited)
  1623. # [16:14] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1624. # [16:14] * Joins: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu)
  1625. # [16:16] * Quits: jrm2k6 (jrm2k6@moz-EEB27916.prtelecom.hu) (Ping timeout)
  1626. # [16:17] * edmorley is now known as edmorley|sheriffduty
  1627. # [16:18] * Joins: gsvelto (gsvelto@moz-4C54A775.clienti.tiscali.it)
  1628. # [16:19] * Quits: yzen (yzen@67828CC7.C1A51174.9D42CF23.IP) (Ping timeout)
  1629. # [16:19] * whimboo|afk is now known as whimboo
  1630. # [16:19] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1631. # [16:20] * Joins: phenom (phenom@3118D209.352E9725.4A5F0685.IP)
  1632. # [16:20] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  1633. # [16:20] * Quits: andreasn (andreasn@moz-54A49F8D.a336.priv.bahnhof.se) (Ping timeout)
  1634. # [16:20] * Joins: yzen (yzen@67828CC7.C1A51174.9D42CF23.IP)
  1635. # [16:21] * Joins: andreasn (andreasn@moz-54A49F8D.a336.priv.bahnhof.se)
  1636. # [16:23] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  1637. # [16:25] * Quits: tonymec (tonymec@96BA828A.753976D7.A9371869.IP) (Ping timeout)
  1638. # [16:26] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  1639. # [16:26] * Quits: gabor (gabor@moz-FD07DCCF.pool.digikabel.hu) (Ping timeout)
  1640. # [16:26] * armenzg_brb is now known as armenzg
  1641. # [16:26] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  1642. # [16:28] * Quits: tonymec|away (tonymec@96BA828A.753976D7.A9371869.IP) (Ping timeout)
  1643. # [16:28] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  1644. # [16:28] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1645. # [16:28] * Joins: tonymec (tonymec@96BA828A.753976D7.A9371869.IP)
  1646. # [16:30] * Joins: dao (dao@moz-953930A1.superkabel.de)
  1647. # [16:30] * Joins: tonymec|away (tonymec@96BA828A.753976D7.A9371869.IP)
  1648. # [16:30] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  1649. # [16:31] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1650. # [16:31] * froydnj sees more agitated ux bugzilla comments
  1651. # [16:31] * Joins: lmandel (lmandel@13F2CEC5.7672369.D8E68FF6.IP)
  1652. # [16:32] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1653. # [16:32] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  1654. # [16:33] * pmoore is now known as pmoore|away
  1655. # [16:33] * Fallen|away is now known as Fallen
  1656. # [16:33] <NeilAway> froydnj: which OS did you want symbols for?
  1657. # [16:33] * Quits: pbocan (Thunderbir@moz-C4C0C08B.eduroam.fit.cvut.cz) (Ping timeout)
  1658. # [16:33] * Joins: lizzard (ehenry@moz-A3C04F1.hsd1.or.comcast.net)
  1659. # [16:33] <froydnj> NeilAway: linux...but I see that symbols are included in nightlies; I thought they weren't at one point
  1660. # [16:34] <Yoric> We have a spambot active on bugzilla atm. What's the procedure to get it banned?
  1661. # [16:34] <Yoric> https://bugzilla.mozilla.org/show_bug.cgi?id=902024#c65
  1662. # [16:34] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1663. # [16:35] <froydnj> glob: ^ (also bug 933964)
  1664. # [16:35] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  1665. # [16:35] <Ms2ger> gavin, ^
  1666. # [16:36] * Joins: eduardostalinho (eduardo@F85E39B8.BDEBB05.EF49E5F2.IP)
  1667. # [16:37] * Joins: Archaeopteryx (itsme@moz-4DFF21E0.cust.telecolumbus.net)
  1668. # [16:37] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  1669. # [16:37] <heftig> aaand more death threats. nice.
  1670. # [16:38] * Joins: Edgar (Thunderbir@moz-FC3E834D.dynamic.hinet.net)
  1671. # [16:38] <Yoric> Some people seem to believe that threats are the way to go.
  1672. # [16:39] * jchen|away is now known as jchen
  1673. # [16:39] * Quits: heftig (heftig@moz-E8E2034C.inf.fh-bonn-rhein-sieg.de) (Quit: Quitting)
  1674. # [16:39] * Joins: mcote (mcote@moz-BF3F09D8.cpe.pppoe.ca)
  1675. # [16:39] * pmoore|away is now known as pmoore
  1676. # [16:40] * catlee-away is now known as catlee
  1677. # [16:41] <reuben> we should just make editbugs required for commenting on any bug with "australis" in it
  1678. # [16:42] <kats> it's a lot of bugs: https://bugzilla.mozilla.org/page.cgi?id=user_activity.html&action=run&from=-14d&who=RetroInferno%40hmamail.com
  1679. # [16:42] <evilpie> and he is back!
  1680. # [16:42] <evilpie> oh you already noticed
  1681. # [16:43] <reuben> or maybe disable sign ups with temporary email services
  1682. # [16:43] * Joins: kq_ffos1 (nodebot@moz-86D9E79A.elisa-mobile.fi)
  1683. # [16:44] <kats> that seems like it would impact people with legitimate use cases
  1684. # [16:44] * Quits: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi) (Ping timeout)
  1685. # [16:44] * Quits: Edgar (Thunderbir@moz-FC3E834D.dynamic.hinet.net) (Ping timeout)
  1686. # [16:44] <hub> yep that one
  1687. # [16:44] <evilpie> yeah imagine you want to report some bug on some site which you don't want to have associated with your real identity
  1688. # [16:45] <Ms2ger> Right
  1689. # [16:45] <evilpie> maybe we just need more people with the permission to ban and remove that stuff
  1690. # [16:45] * Quits: kq_ffos1 (nodebot@moz-86D9E79A.elisa-mobile.fi) (Ping timeout)
  1691. # [16:45] <evilpie> I don't really know who can do that right now
  1692. # [16:45] <hub> I wouldn't mind having it
  1693. # [16:46] <Ms2ger> Other people would probably mind me having it :)
  1694. # [16:46] * Joins: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP)
  1695. # [16:46] <hub> :-)
  1696. # [16:46] <evilpie> we have ways to track you down
  1697. # [16:46] * Joins: pbocan (Thunderbir@moz-9B235683.vc.cvut.cz)
  1698. # [16:47] <reuben> hah
  1699. # [16:47] * Quits: stransky (stransky@moz-59D79C36.broadband2.iol.cz) (Quit: Connection reset by beer)
  1700. # [16:47] <hub> just ask the NSA ;-)
  1701. # [16:47] <dao> removing comments doesn't help, the damage is done when that guy manages to trigger a thousand bug mails
  1702. # [16:47] * Quits: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net) (Quit: Leaving.)
  1703. # [16:47] <evilpie> well at least we don't get weird google search results or something like that
  1704. # [16:47] <hub> dao: it somewhat helps as it gets removed, but yeah
  1705. # [16:47] <Ms2ger> Asking evilpie is probably easier, but I don't think he'll tell
  1706. # [16:47] <evilpie> nope
  1707. # [16:47] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  1708. # [16:48] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  1709. # [16:48] * sheppy is now known as sheppy-offline
  1710. # [16:48] <evilpie> I don't even have editusers
  1711. # [16:48] <reuben> we'll make him an offer he can't refuse
  1712. # [16:48] <evilpie> uhh
  1713. # [16:48] <evilpie> you wouldn't want to do that
  1714. # [16:49] * JosiahOne|Away is now known as JosiahOne
  1715. # [16:49] * Quits: dao (dao@moz-953930A1.superkabel.de) (Connection reset by peer)
  1716. # [16:50] * sheppy-offline is now known as sheppy
  1717. # [16:50] * Quits: janv (varga@B8FBB6B4.73D44C34.4F33160D.IP) (Quit: This computer has gone to sleep)
  1718. # [16:50] <RyanVM> Yoric: looks like bug 854169 blew up Android
  1719. # [16:50] * Quits: lizzard (ehenry@moz-A3C04F1.hsd1.or.comcast.net) (Quit: lizzard)
  1720. # [16:51] <RyanVM> https://tbpl.mozilla.org/?tree=Fx-Team&rev=8898b6c66941
  1721. # [16:51] <RyanVM> edmorley|sheriffduty: backing it out
  1722. # [16:51] <Yoric> :/
  1723. # [16:51] <edmorley|sheriffduty> RyanVM: ty
  1724. # [16:52] <Archaeopteryx> evilpie: [2013-10-10 21:04:22] * ted * i hand editbugs out with impunity
  1725. # [16:52] <Archaeopteryx> [2013-10-10 21:04:26] * ted * pretty low bar to show you're not a jerk
  1726. # [16:53] <evilpie> I have editbugs ;)
  1727. # [16:53] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  1728. # [16:53] * ChanServ sets mode: +o ehsan
  1729. # [16:54] <Archaeopteryx> ah, editusers
  1730. # [16:54] <Archaeopteryx> time for weekend
  1731. # [16:54] * Joins: lpy (lpy@12172131.F09091A8.1348A864.IP)
  1732. # [16:54] <evilpie> would be pretty bad not to have it
  1733. # [16:54] <evilpie> editbugs
  1734. # [16:54] <@bz> fwiw
  1735. # [16:54] <@bz> https://bugzilla.mozilla.org/show_bug.cgi?id=936509
  1736. # [16:55] <@bz> on the topic of editbugs
  1737. # [16:55] * Joins: wlach (wlach@5A322A17.4F9B71DB.80C20C35.IP)
  1738. # [16:56] <evilpie> a lot of people have editbus
  1739. # [16:56] <evilpie> probably not the best bar
  1740. # [16:56] <jmaher> avih: http://people.mozilla.org/~jmaher/mc.zip and http://people.mozilla.org/~jmaher/ux.zip
  1741. # [16:56] <froydnj> editbugs2, editbugs3...
  1742. # [16:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0fdbc3f4d34e - Brian Hackett - Bug 935952 - Clean up TypeObjectKey property interface to avoid querying objects with unknown properties, r=jandem.
  1743. # [16:56] <jez> a build of SeaMonkey just crashed out with "Error 2". any ideas how I can figure out what the error was?
  1744. # [16:56] * philor|away is now known as philor
  1745. # [16:57] * bz is now known as bz_away
  1746. # [16:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4a248fb47a8e - Brian Hackett - Bug 936361 - Fixup inlined no-freeze version of isOwnProperty, r=jandem.
  1747. # [16:58] <avih> jmaher: thx. will soon get to it :)
  1748. # [16:59] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  1749. # [16:59] * Quits: glazou (glazou@F335B7EE.218590B8.83DA1961.IP) (Quit: glazou)
  1750. # [17:00] * Joins: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net)
  1751. # [17:01] * Joins: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1752. # [17:01] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  1753. # [17:01] * Quits: dmarcos_ (dmarcos@D8E6918F.649F2F33.D4043753.IP) (Ping timeout)
  1754. # [17:01] * Quits: elin (elin@7B8CEC62.435A799.89D78A4.IP) (Quit: elin)
  1755. # [17:01] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  1756. # [17:02] * Joins: mccr8_ (mccr8@moz-BBE3ABD.mv.mozilla.com)
  1757. # [17:02] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  1758. # [17:02] * mccr8_ is now known as mccr8
  1759. # [17:02] <jez> http://pastebin.com/wSp6HyDy
  1760. # [17:02] * Joins: WeirdAl (chatzilla@moz-527389C3.hsd1.ca.comcast.net)
  1761. # [17:03] <jez> why the error?
  1762. # [17:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c000353517c7 - Brian Hackett - Bug 936501 - Only give IonBuilder a context during definite properties analysis, r=jandem.
  1763. # [17:03] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  1764. # [17:04] * Quits: wolfiR (wolfiR@moz-2D545C91.dip0.t-ipconnect.de) (Ping timeout)
  1765. # [17:05] * Joins: dmarcos_ (dmarcos@C5CDA89C.E27FEB1B.127F0E5F.IP)
  1766. # [17:06] <@ehsan> jacek: ping
  1767. # [17:06] <jacek> hi ehsan
  1768. # [17:06] <@ehsan> hi
  1769. # [17:07] * Quits: Mossop (dtownsend@moz-242CA735.lsanca.fios.verizon.net) (Quit: Leaving)
  1770. # [17:07] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1771. # [17:07] * jorendorff_away is now known as jorendorff
  1772. # [17:08] * Joins: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk)
  1773. # [17:09] * Joins: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  1774. # [17:10] <@ehsan> jacek: is the version of the patch on the wchar_t/char16_t bug the latest version?
  1775. # [17:10] * Quits: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP) (Client exited)
  1776. # [17:10] <jacek> ehsan: yes
  1777. # [17:11] <jacek> (the part that contains Char16.h and ns*String changes)
  1778. # [17:11] <jacek> I didn't update the rest part
  1779. # [17:11] <@ehsan> ok
  1780. # [17:11] * coop is now known as coop|mtg
  1781. # [17:12] * Quits: pbocan (Thunderbir@moz-9B235683.vc.cvut.cz) (Ping timeout)
  1782. # [17:13] * Joins: Mossop (dtownsend@moz-242CA735.lsanca.fios.verizon.net)
  1783. # [17:14] * Quits: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi) (Ping timeout)
  1784. # [17:15] * Joins: dmarcos- (dmarcos@B99BB4EC.45C3C158.127F0E5F.IP)
  1785. # [17:16] * Joins: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1786. # [17:16] * Quits: dmarcos_ (dmarcos@C5CDA89C.E27FEB1B.127F0E5F.IP) (Ping timeout)
  1787. # [17:16] * Joins: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz)
  1788. # [17:17] * Quits: six600110 (six600110@moz-C663577C.hsd1.il.comcast.net) (Connection reset by peer)
  1789. # [17:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4bb843a74b5b - Milan Sreckovic - Bug 893572 - Tests. r=jmuizelaar
  1790. # [17:18] * Quits: dmarcos- (dmarcos@B99BB4EC.45C3C158.127F0E5F.IP) (Ping timeout)
  1791. # [17:19] * jedp is now known as jedp|food
  1792. # [17:19] * Quits: jedp|food (jedp@moz-89599B04.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  1793. # [17:20] * coop|mtg is now known as coop
  1794. # [17:20] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  1795. # [17:20] * Quits: stransky (stransky@moz-59D79C36.broadband2.iol.cz) (Quit: Connection reset by beer)
  1796. # [17:21] <philor> RyanVM: oh, you'll want to clobber every tree
  1797. # [17:21] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  1798. # [17:21] <RyanVM> whee
  1799. # [17:21] <RyanVM> why?
  1800. # [17:21] * philor tries to think of something else obvious to say too
  1801. # [17:21] <philor> that debug android failure, tip of fx-team, is from stuff merged from inbound that was needs-clobber
  1802. # [17:22] <RyanVM> philor: luckily I already clobbered everything today?
  1803. # [17:22] * RyanVM really needs to drill into Tomcat's head the idea of pre-emptive clobbers before merging
  1804. # [17:23] <philor> yeah, your clobber was pre-last-merge
  1805. # [17:23] <RyanVM> philor: sigh
  1806. # [17:23] <RyanVM> clobbering again
  1807. # [17:23] <philor> life is pain
  1808. # [17:23] <froydnj> it's clobberin' time!
  1809. # [17:23] <RyanVM> very zen of you
  1810. # [17:23] <froydnj> RyanVM--
  1811. # [17:23] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  1812. # [17:24] <RyanVM> hey, my karma!
  1813. # [17:24] <Ms2ger> Sounds like RyanVM isn't very zen yet
  1814. # [17:24] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1815. # [17:24] <RyanVM> Ms2ger: I'm trying but people keep taking my karma!
  1816. # [17:24] <RyanVM> :(
  1817. # [17:24] <edmorley|sheriffduty> RyanVM: ideally the clobber file would be touched whenever we see needs-clobber issues
  1818. # [17:24] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5040cffe32af - Kartikaya Gupta - Bug 935624 - Kill SetZoomAndResolution because the APZC should not touch the mResolution or mCumulativeResolution. r=botond
  1819. # [17:24] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/700ce8c0d14d - Kartikaya Gupta - Bug 935624 - Update various properties on the FrameMetrics on a layers update. r=botond
  1820. # [17:24] * hwine-ooo is now known as hwine
  1821. # [17:25] <edmorley|sheriffduty> RyanVM: then we wouldn't need to remember ourselves after merging, nor confuse anyone who uses a project repo
  1822. # [17:25] <RyanVM> edmorley|sheriffduty: lol, we should piss everybody off and just push a touch of CLOBBER every time we merge to m-c
  1823. # [17:25] <kats> firebot: rank RyanVM
  1824. # [17:25] <firebot> RyanVM has 50 points of karma (rank 42).
  1825. # [17:25] <kats> not bad
  1826. # [17:25] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1827. # [17:25] <RyanVM> edmorley|sheriffduty: problem is, hard to say when a clobber's needed or not until it's too late
  1828. # [17:25] <RyanVM> hence why I've gotten to the point of just doing them pre-emptively
  1829. # [17:25] * ctalbert|afk is now known as ctalbert
  1830. # [17:25] <edmorley|sheriffduty> RyanVM: yeah I mean modify after finding out
  1831. # [17:25] <RyanVM> i'm sick of waiting around to find out
  1832. # [17:26] <Ms2ger> They're never going to get fixed that way, though
  1833. # [17:26] <edmorley|sheriffduty> RyanVM: yeah but if we find out on m-c then we touch the clobber file
  1834. # [17:26] <edmorley|sheriffduty> RyanVM: at least that way we can start filing bugs on more of these edge-cases
  1835. # [17:27] <RyanVM> Ms2ger: in fairness, they don't get fixed very quickly even when we do file them
  1836. # [17:27] <RyanVM> see: Windows
  1837. # [17:27] * Quits: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi) (Ping timeout)
  1838. # [17:28] <RyanVM> i find it rather sad and ironic that there's all this focus on speeding up Windows builds, but apparently getting them to build reliably when deps change isn't as high on the list
  1839. # [17:28] <RyanVM> because clobbering and starting over is SOOO much faster
  1840. # [17:28] <Ms2ger> Stuff is hard
  1841. # [17:28] <Ms2ger> There's probably -3 people who can fix those :)
  1842. # [17:28] * Joins: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  1843. # [17:29] * Quits: dougt (dougt@moz-A89CF36B.vesrv.com) (Max SendQ exceeded)
  1844. # [17:29] * Quits: eduardostalinho (eduardo@F85E39B8.BDEBB05.EF49E5F2.IP) (Ping timeout)
  1845. # [17:29] * Joins: dougt (dougt@moz-A89CF36B.vesrv.com)
  1846. # [17:30] * Joins: drexler (drexler@moz-155EA683.cncdnh.east.myfairpoint.net)
  1847. # [17:30] * Quits: ctangira (ctangira@moz-44402D73.cisco.com) (Connection reset by peer)
  1848. # [17:30] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1849. # [17:31] * Joins: chmanchester (textual@moz-6B477A27.hsd1.pa.comcast.net)
  1850. # [17:31] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1851. # [17:31] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  1852. # [17:32] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1853. # [17:32] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1854. # [17:32] <jesup|laptop> RyanVM: we had to clobber last night when I landed the bug webrtc.org update (bug 932112). It didn't notice some files had been removed (referenced from gypi files)
  1855. # [17:32] * Quits: jimb (user@moz-ED4AA0F2.hsd1.wa.comcast.net) (Ping timeout)
  1856. # [17:32] <RyanVM> jesup|laptop: can you file a "bug 932112 required a clobber" bug?
  1857. # [17:32] <jesup|laptop> Ms2ger: I like the negative sign
  1858. # [17:32] <RyanVM> looks like that's the bustage we just hit here
  1859. # [17:33] * Joins: ctangira (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net)
  1860. # [17:33] <RyanVM> https://tbpl.mozilla.org/php/getParsedLog.php?id=30332291&tree=Fx-Team
  1861. # [17:33] <jesup|laptop> RyanVM: sure.
  1862. # [17:33] <RyanVM> thanks :)
  1863. # [17:33] * pmoore is now known as pmoore|away
  1864. # [17:35] * Joins: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de)
  1865. # [17:35] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  1866. # [17:35] * Quits: ericb2 (X@moz-9C4C3DED.fbx.proxad.net) (Quit: Success !!)
  1867. # [17:36] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  1868. # [17:36] <RyanVM> lol, the inbound clobberer is officially showing up on my new tab page thumbnails
  1869. # [17:36] * Quits: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net) (Quit: Leaving)
  1870. # [17:38] * RyanVM is now known as RyanVM|brb
  1871. # [17:38] * Joins: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  1872. # [17:38] * Joins: dmarcos_ (dmarcos@3A045D7.FB49FEDE.ACD38FDF.IP)
  1873. # [17:39] <jesup|laptop> RyanVM|brb: filed, bug 936527
  1874. # [17:39] * pmoore|away is now known as pmoore
  1875. # [17:39] * julienw is now known as julienw_afk
  1876. # [17:40] * Joins: sfosters (sfoster@moz-99C13B58.hsd1.or.comcast.net)
  1877. # [17:41] * terrence-afk is now known as terrence
  1878. # [17:41] * Quits: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com) (Ping timeout)
  1879. # [17:41] * Quits: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net) (Ping timeout)
  1880. # [17:42] * Joins: heftig (heftig@moz-76BC6A3B.dip0.t-ipconnect.de)
  1881. # [17:43] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1882. # [17:43] <jhopkins|buildduty> mdas: what bug is 936153 blocking?
  1883. # [17:43] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  1884. # [17:44] <mdas> jhopkins|buildduty: 936019, i've just updated the bug
  1885. # [17:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/780b232ec465 - Dan Minor - Bug 929985 - Reduce aggregate batch transaction stress test iterations in TestTXMgr.cpp for Android and ASAN; r=ehsan
  1886. # [17:44] <jhopkins|buildduty> just noticed it in comment 0 - thanks
  1887. # [17:44] <jhopkins|buildduty> i'm working on the loaner request now
  1888. # [17:44] * Joins: ericb2 (X@moz-9C4C3DED.fbx.proxad.net)
  1889. # [17:45] <mdas> jhopkins|buildduty: cool. Do you have any info about getting a vm image I can use from ec2?
  1890. # [17:45] <mdas> like in my comment
  1891. # [17:45] * Joins: bgrins (Adium@moz-BFD2E6ED.reverse.socket.net)
  1892. # [17:46] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  1893. # [17:46] * edmorley|sheriffduty is now known as edmorley|afk
  1894. # [17:46] * Quits: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de) (Ping timeout)
  1895. # [17:46] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  1896. # [17:47] <jhopkins|buildduty> mdas: no, we don't have any VM images. it's been talked about before.. coop, do you have any other info regarding VM images?
  1897. # [17:47] * sfosters is now known as sfoster
  1898. # [17:47] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  1899. # [17:47] * philor is now known as philor|away
  1900. # [17:47] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1901. # [17:47] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  1902. # [17:48] * Joins: eduardostalinho (eduardo@71E69041.31104A07.230BF1CD.IP)
  1903. # [17:48] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  1904. # [17:48] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1905. # [17:48] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  1906. # [17:49] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1907. # [17:49] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1908. # [17:50] * Quits: dmarcos_ (dmarcos@3A045D7.FB49FEDE.ACD38FDF.IP) (Ping timeout)
  1909. # [17:50] * Quits: ericb2 (X@moz-9C4C3DED.fbx.proxad.net) (Quit: Success !!)
  1910. # [17:50] * Joins: dmarcos_ (dmarcos@8DA8EDC2.7E203826.4106B2BD.IP)
  1911. # [17:51] * Joins: ehugg (chatzilla@CC43922C.29102B70.6CD50604.IP)
  1912. # [17:51] * Joins: dveditz (dveditz@moz-67794A0A.hsd1.ca.comcast.net)
  1913. # [17:51] * ChanServ sets mode: +o dveditz
  1914. # [17:51] * corey|away is now known as corey
  1915. # [17:52] * Quits: lpy (lpy@12172131.F09091A8.1348A864.IP) (Client exited)
  1916. # [17:52] <coop> mdas, jhopkins|buildduty: no, we haven't had linux VMs that you can download for a few years now
  1917. # [17:52] <coop> we're all about loaning AWS instances now
  1918. # [17:53] * Joins: ponc (Mibbit@moz-74E5998.pools.arcor-ip.net)
  1919. # [17:53] * Quits: nicklebedev (nicklebede@moz-838152B8.net135.n37.ru) (Quit: )
  1920. # [17:54] * Joins: tessarakt2 (jens@moz-8B45C6C2.dip0.t-ipconnect.de)
  1921. # [17:54] * Quits: chmanchester (textual@moz-6B477A27.hsd1.pa.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
  1922. # [17:54] * Joins: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi)
  1923. # [17:55] * Quits: kq_ffos (nodebot@moz-937443ED.elisa-laajakaista.fi) (Input/output error)
  1924. # [17:55] * sheppy is now known as sheppy-offline
  1925. # [17:56] * armenzg is now known as armenzg_lunch
  1926. # [17:57] * Joins: dmarcos- (dmarcos@D2CB77BD.1665EB98.BC6701B1.IP)
  1927. # [17:57] * Quits: tomatoeblue (textual@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Computer has gone to sleep.)
  1928. # [17:58] * sheppy-offline is now known as sheppy
  1929. # [17:58] * Quits: dmarcos_ (dmarcos@8DA8EDC2.7E203826.4106B2BD.IP) (Ping timeout)
  1930. # [17:58] * RyanVM|brb is now known as RyanVM
  1931. # [17:58] <ponc> Hi. I try to save a file by using os.file. I use "OS.Constants.Path.homeDir", but it doesn't find the path. "tmpDir" works. I'm on win7. What do i miss?
  1932. # [17:58] * Joins: TimAbraldes (Instantbir@moz-7FD19BDC.hsd1.or.comcast.net)
  1933. # [18:00] * Quits: ehugg (chatzilla@CC43922C.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 24.0/20130910160258])
  1934. # [18:01] * Quits: eduardostalinho (eduardo@71E69041.31104A07.230BF1CD.IP) (Ping timeout)
  1935. # [18:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/669ccf5fb31e - Felix S. Klock II - Bug 933269: jit support for getElem in TypedObjects (r=nmatsakis).
  1936. # [18:02] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3ccaefa09332 - Felix S. Klock II - Bug 933269: tests for getElem on TypedObjects (r=nmatsakis).
  1937. # [18:02] * Joins: zenon (Mibbit@moz-74E5998.pools.arcor-ip.net)
  1938. # [18:02] * Joins: pcwalton (pcwalton@moz-B51927E9.hsd1.ca.comcast.net)
  1939. # [18:02] * rail is now known as rail-lunch
  1940. # [18:02] * Quits: marcoz (marco.zehe@moz-EDA68E22.dip0.t-ipconnect.de) (Quit: Leaving.)
  1941. # [18:04] * Joins: sfosters (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  1942. # [18:04] * JosiahOne is now known as JosiahOne|Lunch
  1943. # [18:05] * Quits: sfoster (sfoster@moz-99C13B58.hsd1.or.comcast.net) (Ping timeout)
  1944. # [18:05] * Joins: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP)
  1945. # [18:06] * Joins: bent|lunch (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP)
  1946. # [18:06] * Joins: valenting (Thunderbir@590D2376.7E118222.89C0DD0D.IP)
  1947. # [18:06] * bent|lunch is now known as bent
  1948. # [18:06] * catlee is now known as catlee-lunch
  1949. # [18:07] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1950. # [18:07] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  1951. # [18:08] * Quits: ponc (Mibbit@moz-74E5998.pools.arcor-ip.net) (Quit: http://www.mibbit.com ajax IRC Client)
  1952. # [18:09] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  1953. # [18:09] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1954. # [18:09] * Quits: mcote (mcote@moz-BF3F09D8.cpe.pppoe.ca) (Quit: leaving)
  1955. # [18:09] * Joins: redwood (chatzilla@26E73836.156CBEAD.74E1C77A.IP)
  1956. # [18:09] * Quits: bent (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  1957. # [18:13] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  1958. # [18:14] * Quits: tzimmermann (tzimmerman@moz-84E0BDB9.pools.arcor-ip.net) (Quit: Ex-Chat)
  1959. # [18:14] * Joins: schien (anonymous@moz-150E2B90.dynamic.hinet.net)
  1960. # [18:15] * Joins: mcote (mcote@moz-BF3F09D8.cpe.pppoe.ca)
  1961. # [18:15] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1962. # [18:15] * ahal is now known as ahal|lunch
  1963. # [18:16] * Quits: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1964. # [18:16] * jhopkins|buildduty is now known as jhopkins|bbiab
  1965. # [18:18] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1966. # [18:19] * jlund|afk is now known as jlund
  1967. # [18:19] * sfosters is now known as sfoster
  1968. # [18:19] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1969. # [18:20] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Ping timeout)
  1970. # [18:20] * Joins: kdc_ (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  1971. # [18:21] * kdc_ is now known as kdc
  1972. # [18:21] * Joins: fabrice (fabrice@moz-C07D5168.p2p.sfo1.mozilla.com)
  1973. # [18:22] * Quits: schien (anonymous@moz-150E2B90.dynamic.hinet.net) (Ping timeout)
  1974. # [18:23] * Joins: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de)
  1975. # [18:23] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Ping timeout)
  1976. # [18:24] * Joins: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  1977. # [18:24] * Quits: WeirdAl (chatzilla@moz-527389C3.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
  1978. # [18:25] * Quits: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de) (Ping timeout)
  1979. # [18:25] * Joins: bent (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP)
  1980. # [18:26] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1981. # [18:27] * sheppy is now known as sheppy-offline
  1982. # [18:27] * philor|away is now known as philor
  1983. # [18:27] * Quits: tonymec (tonymec@96BA828A.753976D7.A9371869.IP) (Ping timeout)
  1984. # [18:29] * Joins: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1985. # [18:29] * Quits: JosiahOne|Lunch (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  1986. # [18:30] * edmorley|afk is now known as edmorley
  1987. # [18:30] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  1988. # [18:30] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1989. # [18:30] * ChanServ sets mode: +o smaug
  1990. # [18:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4ea251c4a5d2 - Ed Morley - Backed out changeset c000353517c7 (bug 936501) for B2G build failures on a CLOSED TREE
  1991. # [18:31] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  1992. # [18:31] * Joins: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  1993. # [18:31] * bz_away is now known as bz
  1994. # [18:31] * Joins: JosiahOne|Lunch (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  1995. # [18:32] * jhopkins|bbiab is now known as jhopkins|buildduty
  1996. # [18:32] * Joins: tonymec (tonymec@96BA828A.753976D7.A9371869.IP)
  1997. # [18:32] * Joins: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com)
  1998. # [18:32] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  1999. # [18:32] * armenzg_lunch is now known as armenzg
  2000. # [18:33] * Joins: eduardostalinho (eduardo@F93D2F84.D8C3859C.57A073BC.IP)
  2001. # [18:33] * Quits: zenon (Mibbit@moz-74E5998.pools.arcor-ip.net) (Quit: http://www.mibbit.com ajax IRC Client)
  2002. # [18:34] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  2003. # [18:34] * Quits: teoli (teoli@514D186.F3BBB17D.144F44FA.IP) (Input/output error)
  2004. # [18:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1a92a46ff6be - Ed Morley - Backed out changeset 4bb843a74b5b (bug 893572) for test failures on a CLOSED TREE
  2005. # [18:36] * Joins: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP)
  2006. # [18:38] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  2007. # [18:38] * Quits: bgrins (Adium@moz-BFD2E6ED.reverse.socket.net) (Quit: Leaving.)
  2008. # [18:39] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2009. # [18:40] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  2010. # [18:40] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  2011. # [18:41] * Quits: grapenuts (chatzilla@moz-B38E5938.dhcp.plbg.ny.charter.com) (Ping timeout)
  2012. # [18:41] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2013. # [18:41] * jcranmer|away is now known as jcranmer
  2014. # [18:42] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Ping timeout)
  2015. # [18:42] * Joins: damons (gnubeard@9EF89678.76294AC8.4A816864.IP)
  2016. # [18:43] * Quits: pcwalton (pcwalton@moz-B51927E9.hsd1.ca.comcast.net) (Quit: pcwalton)
  2017. # [18:43] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  2018. # [18:44] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2019. # [18:44] * Joins: rniwa (rniwa@46B5412F.3597C859.3AF705F3.IP)
  2020. # [18:44] * Quits: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net) (Connection reset by peer)
  2021. # [18:45] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  2022. # [18:45] * Joins: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net)
  2023. # [18:46] <philor> ehsan: unreasonable as this sounds, I think we should drop the Profiling branch in favor of me pushing to try every week or two
  2024. # [18:46] <philor> I already do, with a bigger stack of patches than what Profiling has, and I find far more bustage than it does
  2025. # [18:47] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2026. # [18:47] * Quits: matthewgertner (matthewger@173F2E9D.96442F2E.EE1C58A.IP) (Quit: matthewgertner)
  2027. # [18:47] * Joins: grapenuts (chatzilla@moz-B38E5938.dhcp.plbg.ny.charter.com)
  2028. # [18:47] <gps> this might be one of the most useful tools I've written recently: http://gregoryszorc.com/blog/2013/11/08/using-mercurial-to-query-mozilla-metadata/
  2029. # [18:47] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2030. # [18:47] * Joins: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de)
  2031. # [18:48] <gps> hg log -r 'bug(784841)'
  2032. # [18:48] <gps> hg log -r 'me() and firstpushtree(central)'
  2033. # [18:49] * jlund is now known as jlund|brb
  2034. # [18:49] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2035. # [18:50] * Quits: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de) (Ping timeout)
  2036. # [18:51] * Quits: fabrice (fabrice@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2037. # [18:52] * Joins: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de)
  2038. # [18:52] <Callek> gps: the tree() stuff, is it querying remote repos directly, or does it require some sort of local repo magic setup?
  2039. # [18:53] <gps> Callek: all local. requires you to be running a monolithic repo (which I recommend as a best practice)
  2040. # [18:53] <Callek> gps: sure, only asked because your post didn't explicitly specify that... so would be good for an addendum pointing to something that says how you expect that setup to work properly ;-)
  2041. # [18:53] <Callek> either way that looks awesome even if I don't do monolithic repo!
  2042. # [18:53] * Quits: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de) (Ping timeout)
  2043. # [18:54] * Quits: dmarcos- (dmarcos@D2CB77BD.1665EB98.BC6701B1.IP) (Quit: Leaving...)
  2044. # [18:55] * Quits: valenting (Thunderbir@590D2376.7E118222.89C0DD0D.IP) (Connection reset by peer)
  2045. # [18:55] * Joins: valenting (Thunderbir@590D2376.7E118222.89C0DD0D.IP)
  2046. # [18:55] * Quits: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz) (Ping timeout)
  2047. # [18:57] * Joins: fabrice (fabrice@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2048. # [18:58] * geekboy|afk is now known as geekboy
  2049. # [18:58] * jlund|brb is now known as jlund
  2050. # [18:58] * rail-lunch is now known as rail
  2051. # [19:00] * Joins: myk1 (myk@moz-BBE3ABD.mv.mozilla.com)
  2052. # [19:00] * pmoore is now known as pmoore|away
  2053. # [19:00] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2054. # [19:01] * Quits: Optimizer (Optimizer@3184854C.2F164F73.D2D1FAF0.IP) (Ping timeout)
  2055. # [19:01] * kats is now known as kats-lunch
  2056. # [19:01] * Parts: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2057. # [19:01] * Joins: juanb_ (jbecerra@moz-ACDE7EEC.mozilla.com)
  2058. # [19:02] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  2059. # [19:02] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2060. # [19:02] * juanb_ is now known as juanb
  2061. # [19:02] * Joins: dholbert_ (dholbert@moz-BBE3ABD.mv.mozilla.com)
  2062. # [19:03] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2063. # [19:04] <NeilAway> gps: what's wrong with hg log -k ?
  2064. # [19:04] * Joins: ckerschb (ckerschb@moz-82777327.ics.uci.edu)
  2065. # [19:04] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Client exited)
  2066. # [19:06] * Joins: jammink (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2067. # [19:06] * Quits: tessarakt2 (jens@moz-8B45C6C2.dip0.t-ipconnect.de) (Ping timeout)
  2068. # [19:07] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2069. # [19:07] * Quits: jrgill (jrgill@moz-DEC99E33.stny.res.rr.com) (Ping timeout)
  2070. # [19:08] * Joins: Optimizer (Optimizer@A4044472.F2703C2A.274D17D6.IP)
  2071. # [19:08] * Quits: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk) (Quit: Ex-Chat)
  2072. # [19:08] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  2073. # [19:12] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Quit: Konversation terminated!)
  2074. # [19:12] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  2075. # [19:13] <gps> NeilAway: nothing.
  2076. # [19:13] * jimm is now known as jimm-lunch
  2077. # [19:14] * Quits: myk1 (myk@moz-BBE3ABD.mv.mozilla.com) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  2078. # [19:14] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  2079. # [19:14] * Quits: myk (uid15689@moz-A42E5B7B.irccloud.com) (Quit: )
  2080. # [19:14] * Quits: @bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net) (Ping timeout)
  2081. # [19:14] * Joins: matthewgertner (matthewger@E05025B2.7102BCB6.B7C3970A.IP)
  2082. # [19:14] * Joins: myk (myk@moz-BBE3ABD.mv.mozilla.com)
  2083. # [19:15] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2084. # [19:15] * catlee-lunch is now known as catlee
  2085. # [19:15] * Quits: HasilSharma (hasil@B32ABED.6C6281B2.328B0197.IP) (Quit: Leaving.)
  2086. # [19:16] * Joins: bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net)
  2087. # [19:16] * ChanServ sets mode: +o bz
  2088. # [19:16] * Quits: tonymec|away (tonymec@96BA828A.753976D7.A9371869.IP) (Ping timeout)
  2089. # [19:16] * JosiahOne|Lunch is now known as JosiahOne
  2090. # [19:16] * coop is now known as coop|lunch
  2091. # [19:17] * Joins: tonymec|away (tonymec@96BA828A.753976D7.A9371869.IP)
  2092. # [19:17] <@ehsan> philor: is there anything I can change on my side to make things better/easier for you?
  2093. # [19:17] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  2094. # [19:17] * Joins: myk (myk@moz-BBE3ABD.mv.mozilla.com)
  2095. # [19:19] * Joins: ehugg (chatzilla@CC43922C.29102B70.6CD50604.IP)
  2096. # [19:19] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2097. # [19:21] * ahal|lunch is now known as ahal
  2098. # [19:21] <philor> ehsan: https://tbpl.mozilla.org/?tree=Try&rev=8cb1b007c690 has the stack, aurora branding and update channel are easy enough, but you'd have to manually resolve the version number changes every uplift
  2099. # [19:21] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  2100. # [19:21] * Quits: ckitching (ckitching@moz-73BD1AA5.nat.csx.cam.ac.uk) (Ping timeout)
  2101. # [19:22] <philor> and since we only break something a couple of times a cycle, and I'd still have to do aurora-as-beta, I'm just not sure we need the twice-a-day anymore
  2102. # [19:22] * Joins: josh (josh@B71029CE.D6F172E7.2A2F4638.IP)
  2103. # [19:23] * Parts: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  2104. # [19:24] * Joins: myk (myk@moz-BBE3ABD.mv.mozilla.com)
  2105. # [19:24] <Fallen> getting a lot of spam on bugzilla, known?
  2106. # [19:24] <philor> yes
  2107. # [19:25] <Fallen> oh comments even removed, just the bugmail. Thanks!
  2108. # [19:26] <@ehsan> philor: I see, ok. so should I just shut it down?
  2109. # [19:26] * gregglind_away is now known as gregglind
  2110. # [19:26] * Quits: @gavin (gavin@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  2111. # [19:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/57213b64023b - Garrett Robinson - Bug 855326 - CSP 1.1 nonce-source for scripts and styles. r=mrbkap r=dholbert r=geekboy
  2112. # [19:26] * Quits: andreasn (andreasn@moz-54A49F8D.a336.priv.bahnhof.se) (Ping timeout)
  2113. # [19:27] * baku is now known as baku|away
  2114. # [19:27] * Joins: gavin (gavin@moz-DB4A9C19.scl3.mozilla.com)
  2115. # [19:27] * ChanServ sets mode: +o gavin
  2116. # [19:27] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2117. # [19:27] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  2118. # [19:27] * Fallen is now known as Fallen|away
  2119. # [19:29] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2120. # [19:29] * edmorley is now known as edmorley|away
  2121. # [19:29] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  2122. # [19:30] * Quits: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP) (Quit: Leaving.)
  2123. # [19:30] * Quits: rniwa (rniwa@46B5412F.3597C859.3AF705F3.IP) (Ping timeout)
  2124. # [19:31] * Joins: rniwa (rniwa@46B5412F.3597C859.3AF705F3.IP)
  2125. # [19:31] * Quits: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: Leaving.)
  2126. # [19:31] <philor> ehsan: I think so - it did great work, caught us being naughty quite a few times, but for whatever reason it just hasn't gotten to catch anything for a long time now
  2127. # [19:31] <jld> ...wait. Why does TBPL have -Werror=unused-result set but my local build doesn't?
  2128. # [19:31] * RyanVM is now known as RyanVM|sheriffduty
  2129. # [19:31] <@ehsan> philor: ok... I'll write an email to dev.platform as well
  2130. # [19:31] <@ehsan> philor: should I file a bug for RelEng to remove it?
  2131. # [19:32] * Quits: valenting (Thunderbir@590D2376.7E118222.89C0DD0D.IP) (Ping timeout)
  2132. # [19:32] <philor> ehsan: yep, plus tbpl will need one too
  2133. # [19:32] <@ehsan> will do
  2134. # [19:32] * Quits: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net) (Ping timeout)
  2135. # [19:32] <philor> thanks!
  2136. # [19:36] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  2137. # [19:36] * Quits: edmorley|away (~edmorleys@moz-8F6F2E9.cable.virginm.net) (Quit: edmorley|away)
  2138. # [19:37] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2139. # [19:37] <dholbert> jld, possibly from --enable-warnings-as-errors mozconfig option?
  2140. # [19:37] * Joins: catalinn (Thunderbir@3884DB64.7F10AE13.A721DA5F.IP)
  2141. # [19:38] <dholbert> jld, (off by default, since we don't know what compilers / compiler-versions people are using locally, but turned on in tbpl)
  2142. # [19:40] * Quits: Asa (asa@4508CAE6.38324963.204CA821.IP) (Ping timeout)
  2143. # [19:41] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  2144. # [19:41] * Quits: gsvelto (gsvelto@moz-4C54A775.clienti.tiscali.it) (Quit: Leaving)
  2145. # [19:41] * Joins: Asa (asa@4508CAE6.38324963.204CA821.IP)
  2146. # [19:41] * lightsofapollo|sf is now known as lightsofapollo|pto
  2147. # [19:42] <jld> dholbert: Possibly. In fact, this makes perfect sense now that I think about it.
  2148. # [19:42] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  2149. # [19:43] * Quits: bent (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  2150. # [19:43] <@gavin> hmm, my m-c build is failing
  2151. # [19:43] <@gavin> 4:18.79 /Users/gavin/mozilla/mozilla-central/gfx/2d/MacIOSurface.cpp:347:49: error: use of undeclared identifier 'GL_TEXTURE_RECTANGLE_ARB'
  2152. # [19:44] <dholbert> jld, cool. (I recommend using that mozconfig option (ac_add_options --enable-warnings-as-errors) locally, to catch this sorta thing early.)
  2153. # [19:44] * KWierso|afk is now known as KWierso
  2154. # [19:44] <@gavin> jrmuizel: ^
  2155. # [19:45] <jrmuizel> gavin: yep that's my fault
  2156. # [19:45] <jrmuizel> gavin: what's special about your situation?
  2157. # [19:46] <@gavin> jrmuizel: dunno. I'm on 10.9?
  2158. # [19:46] * kats-lunch is now known as kats
  2159. # [19:46] * Quits: jgriffin (jgriffin@13F2CEC5.7672369.D8E68FF6.IP) (Quit: jgriffin)
  2160. # [19:46] <@gavin> pretty vanilla config I think
  2161. # [19:46] <jrmuizel> gavin: does it fix it if you add #include <OpenGL/gl.h>?
  2162. # [19:46] * Joins: jimb (user@125EF623.B2666F0E.66399531.IP)
  2163. # [19:47] * Quits: josh (josh@B71029CE.D6F172E7.2A2F4638.IP) (Quit: josh)
  2164. # [19:48] * Quits: eduardostalinho (eduardo@F93D2F84.D8C3859C.57A073BC.IP) (Ping timeout)
  2165. # [19:48] * Joins: jgriffin (jgriffin@13F2CEC5.7672369.D8E68FF6.IP)
  2166. # [19:48] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2167. # [19:48] <@gavin> jrmuizel: yep seems to
  2168. # [19:48] <@gavin> want me to push that?
  2169. # [19:49] <@gavin> also why doesn't that file have a license header
  2170. # [19:50] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (No route to host)
  2171. # [19:50] <@gavin> jrmuizel: tsk tsk https://bugzilla.mozilla.org/show_bug.cgi?id=929471#c2
  2172. # [19:50] * Joins: bbondy__ (bbondy@moz-717FF534.home.cgocable.net)
  2173. # [19:50] * Quits: Asa (asa@4508CAE6.38324963.204CA821.IP) (Ping timeout)
  2174. # [19:51] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  2175. # [19:52] * Joins: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com)
  2176. # [19:52] * Quits: bbondy__ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2177. # [19:52] * jimm-lunch is now known as jimm
  2178. # [19:53] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  2179. # [19:55] * corey is now known as corey|away
  2180. # [19:55] <jrmuizel> gavin: quite
  2181. # [19:55] * Quits: phenom (phenom@3118D209.352E9725.4A5F0685.IP) (Quit: Leaving)
  2182. # [19:56] * Quits: dholbert_ (dholbert@moz-BBE3ABD.mv.mozilla.com) (Quit: Ex-Chat)
  2183. # [19:56] <jrmuizel> gavin: I'll fix it
  2184. # [19:56] <@gavin> ok
  2185. # [19:56] <@gavin> thanks
  2186. # [19:57] * Quits: sankha93|afk (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2187. # [19:57] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/14366dd910b6 - Kartikaya Gupta - Bug 902505 - Adjust the hit-test and input transformations in APZCTreeManager to be more correct. r=botond
  2188. # [19:58] * philor is now known as philor|afk
  2189. # [19:58] * Fallen|away is now known as Fallen
  2190. # [19:59] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2191. # [19:59] * Joins: shorlander (shorlander@moz-93A7049A.dhcp.insightbb.com)
  2192. # [19:59] * Joins: sankha93|afk (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  2193. # [20:00] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  2194. # [20:00] * Joins: bent (chatzilla@C36F5748.8CE62E0F.A36C57B9.IP)
  2195. # [20:00] * armenzg is now known as armenzg_brb
  2196. # [20:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/79b22871f81e - Jeff Muizelaar - Bug 929471. Fix missing include for 10.9?
  2197. # [20:02] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2198. # [20:02] * Quits: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2199. # [20:02] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2200. # [20:03] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2201. # [20:03] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2202. # [20:03] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2203. # [20:03] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  2204. # [20:03] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  2205. # [20:04] * Quits: KaiRo (robert@moz-9482061C.adsl.highway.telekom.at) (Input/output error)
  2206. # [20:05] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  2207. # [20:06] * Quits: ctangira (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net) (Ping timeout)
  2208. # [20:06] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  2209. # [20:08] * Joins: ctangira (ctangira@moz-44402D73.cisco.com)
  2210. # [20:08] * jedp is now known as jedp|otp
  2211. # [20:08] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  2212. # [20:12] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  2213. # [20:12] * Quits: Optimizer (Optimizer@A4044472.F2703C2A.274D17D6.IP) (Ping timeout)
  2214. # [20:12] * armenzg_brb is now known as armenzg
  2215. # [20:12] * JosiahOne is now known as JosiahOne|Away
  2216. # [20:13] * Joins: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2217. # [20:15] * sankha93|afk is now known as sankha93
  2218. # [20:16] * Joins: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP)
  2219. # [20:16] * Joins: billm (billm@moz-BBE3ABD.mv.mozilla.com)
  2220. # [20:17] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2221. # [20:17] * bent is now known as bent|lunch
  2222. # [20:17] * Joins: nicklebedev (nicklebede@moz-29D843ED.net151.n37.ru)
  2223. # [20:18] * Quits: damons (gnubeard@9EF89678.76294AC8.4A816864.IP) (Ping timeout)
  2224. # [20:18] * Joins: damons (gnubeard@9EF89678.76294AC8.4A816864.IP)
  2225. # [20:19] <RyanVM|sheriffduty> grobinson: dholbert: inbound bustage
  2226. # [20:19] <jez> I get this error when building SeaMonkey: http://pastebin.com/8jd1Qcym
  2227. # [20:19] <jez> any idea why? "zip error: Nothing to do! (try: zip -qr ../venkman-0.9.89.xpi . -i *)"
  2228. # [20:20] <dholbert> RyanVM|sheriffduty, thanks. I'll back out
  2229. # [20:20] <Callek> jez: check #seamonkey i recall someone else having issues with venkman recently
  2230. # [20:20] * Joins: kkdEEP (kkdEEP@25CC67DC.23AF0C6B.FDEA3160.IP)
  2231. # [20:21] <dholbert> RyanVM|sheriffduty, (looks like the Try run was opt-only, and the bustage is inside of a debug-only chunk)
  2232. # [20:22] <jez> does tinderboxpushlog have anything regularly building the suite now or has that been abandoned?
  2233. # [20:23] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  2234. # [20:23] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2235. # [20:23] * Joins: mkmelin (mkmelin@moz-A7C10BC2.elisa-laajakaista.fi)
  2236. # [20:23] <RyanVM|sheriffduty> jez: seamonkey has it's own tbpl instance
  2237. # [20:23] <RyanVM|sheriffduty> Callek ^
  2238. # [20:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c45039455165 - Daniel Holbert - backout 57213b64023b (bug 855326) for build bustage in debug builds
  2239. # [20:24] * Joins: squib (squib@moz-5175C098.dhcp.mdsn.wi.charter.com)
  2240. # [20:24] * Quits: mgol (m_gol@moz-4CB391B7.neoplus.adsl.tpnet.pl) (Quit: Linkinus - http://linkinus.com)
  2241. # [20:24] <Callek> jez: tbpl-dev.callek.net -- note that seamonkeys builders have some known issues atm with state, so that some jobs are completely red
  2242. # [20:24] * mccr8 is now known as mccr8|lunch
  2243. # [20:25] <jez> ok
  2244. # [20:25] <NeilAway> jez: that was a build error a few weeks ago
  2245. # [20:25] <jez> i just grabbed the latest hg source today
  2246. # [20:25] <jez> why am i getting it?
  2247. # [20:26] * Quits: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP) (Ping timeout)
  2248. # [20:26] * corey|away is now known as corey
  2249. # [20:26] * Quits: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net) (Client exited)
  2250. # [20:26] <Callek> jez: did you client.py co (to update m-c)
  2251. # [20:26] * Joins: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net)
  2252. # [20:26] <Callek> (and the venkman source)
  2253. # [20:26] <RyanVM|sheriffduty> dholbert: btw, I'd be lying if I didn't say that I read "must be a harness issue" as "not my problem"
  2254. # [20:26] <jez> cd comm-central
  2255. # [20:26] <jez> python client.py checkout
  2256. # [20:27] <jez> make -f client.mk
  2257. # [20:27] * Quits: rniwa (rniwa@46B5412F.3597C859.3AF705F3.IP) (Quit: rniwa)
  2258. # [20:27] <dholbert> RyanVM|sheriffduty, this is RE those "timed out waiting for MozAfterPaint" android-only bugs?
  2259. # [20:27] <RyanVM|sheriffduty> dholbert: I'd try to bisect it down, but the last time I took the time to bisect a bunch of oranges down (6 or 7), I believe only 1 actually got addressed
  2260. # [20:27] <RyanVM|sheriffduty> yes
  2261. # [20:27] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2262. # [20:27] <dholbert> RyanVM|sheriffduty, I didn't so much mean "not my problem" as "not a bug in this test", and hence "everyone's problem" :)
  2263. # [20:28] <RyanVM|sheriffduty> and it literally took me a week to bisect the ones I did
  2264. # [20:28] <RyanVM|sheriffduty> dholbert: except there's no clear ownership for "the harness"
  2265. # [20:28] <dholbert> RyanVM|sheriffduty, yeah :-/
  2266. # [20:28] <RyanVM|sheriffduty> and I have little confidence that my time in trying to track down when it started would go rewarded
  2267. # [20:29] * Joins: sfosters (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  2268. # [20:30] * Joins: dmarcos_ (dmarcos@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2269. # [20:30] * Quits: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net) (Ping timeout)
  2270. # [20:30] * Joins: briansmith (briansmith@moz-1111329D.meeting.ietf.org)
  2271. # [20:30] * Quits: kkdEEP (kkdEEP@25CC67DC.23AF0C6B.FDEA3160.IP) (Ping timeout)
  2272. # [20:31] * Quits: dmarcos_ (dmarcos@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Linkinus - http://linkinus.com)
  2273. # [20:31] * Joins: jonasfj_ (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2274. # [20:31] * Quits: jonasfj_ (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2275. # [20:31] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Ping timeout)
  2276. # [20:31] * Joins: jonasfj_ (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2277. # [20:31] * Quits: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2278. # [20:31] * Quits: jonasfj_ (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  2279. # [20:31] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  2280. # [20:31] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  2281. # [20:31] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/d078b71b7015 - Margaret Leibovic - Bug 933428 - Remove "Share" and "Add to Home Screen" from about:home context menus. r=sriram a=lsblakk
  2282. # [20:32] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/0134540d3d48 - Margaret Leibovic - Bug 933428 - (Part 2) Update tests to deal with context menu changes. r=gbrown a=lsblakk
  2283. # [20:32] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/1db220d0a4f1 - Margaret Leibovic - Bug 925082 - Open PinSiteDialog with current pinned term. r=wesj a=bbajaj
  2284. # [20:32] * Joins: bwc (Adium@moz-BBE3ABD.mv.mozilla.com)
  2285. # [20:32] * Joins: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2286. # [20:33] * JosiahOne|Away is now known as JosiahOne
  2287. # [20:34] * Joins: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz)
  2288. # [20:35] * Joins: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  2289. # [20:35] <gps> hg log --template '{join(reviewers, "\n")}\n' -r 'firstpushdate(-90)' | sort | uniq -c | sort -n
  2290. # [20:36] <gps> according to that, ehsan has reviewed the most patches to land in the past 90 days! his 428 beat out smaug's 367 and roc's 344.
  2291. # [20:36] * Quits: damons (gnubeard@9EF89678.76294AC8.4A816864.IP) (Quit: damons)
  2292. # [20:37] * Quits: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  2293. # [20:38] * sfosters is now known as sfoster
  2294. # [20:38] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2295. # [20:38] <@smaug> gps: your script is missing bz?
  2296. # [20:39] * Joins: wolfiR (wolfiR@moz-2D545C91.dip0.t-ipconnect.de)
  2297. # [20:40] <gps> smaug: bz has 285 in the last 90 days
  2298. # [20:40] <gps> he's #5, after my 320
  2299. # [20:40] * Quits: victorporof_ (victorporo@9B024C76.73B1E539.9B1E38F4.IP) (Quit: victorporof_)
  2300. # [20:41] <gps> but bz holds the crown for reviews in the past year
  2301. # [20:41] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2302. # [20:41] <froydnj> who wins "most reviews on patches that have been backed out?" :)
  2303. # [20:41] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  2304. # [20:42] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2305. # [20:42] <gps> froydnj: that's a little harder to answer because it requires identifying every patch that has been backed out
  2306. # [20:42] <gps> i could see about adding a selector for that
  2307. # [20:42] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2308. # [20:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/01b3ab1b9371 - Brian Hackett - Bug 936501 - Only give IonBuilder a context during definite properties analysis, r=jandem.
  2309. # [20:43] <gps> froydnj: so, some mercurial extensions write metadata. e.g. transplant and graft both write metadata in the commit stating the commit was "copied" and the changeset of the original commit
  2310. # [20:43] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Ping timeout)
  2311. # [20:43] <gps> if we used those extensions everywhere, we could easily query for "the set of uplifted changesets"
  2312. # [20:44] <gps> I /think/ edmorley is the only person who reliably uses transplant for uplifting patches
  2313. # [20:44] <gps> ditto for "the set of backed out changesets"
  2314. # [20:44] * Quits: yzen (yzen@67828CC7.C1A51174.9D42CF23.IP) (Quit: yzen)
  2315. # [20:44] * ericjung is now known as ericjung|discodancing
  2316. # [20:47] * Joins: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca)
  2317. # [20:47] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2318. # [20:47] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  2319. # [20:48] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2320. # [20:48] * ericjung|discodancing is now known as ericjung|mtg
  2321. # [20:48] * Joins: dhylands-cloud (uid15724@moz-E77DEB21.irccloud.com)
  2322. # [20:49] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Ping timeout)
  2323. # [20:51] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2324. # [20:51] * Joins: rednaks (rednaks@BC151105.2624113F.55FFA9B4.IP)
  2325. # [20:53] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2326. # [20:53] * Quits: kdcw (kdcw@moz-2CDF5822.pk.shawcable.net) (Quit: HydraIRC -> http://www.hydrairc.com <- Chicks dig it)
  2327. # [20:54] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  2328. # [20:55] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2329. # [20:55] * Quits: lmandel (lmandel@13F2CEC5.7672369.D8E68FF6.IP) (Quit: lmandel)
  2330. # [20:55] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  2331. # [20:55] * Joins: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com)
  2332. # [20:56] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2333. # [20:57] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2334. # [21:00] * Joins: damons (gnubeard@9EF89678.76294AC8.4A816864.IP)
  2335. # [21:00] * Joins: AsaDotzler (asa@moz-BBE3ABD.mv.mozilla.com)
  2336. # [21:01] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2337. # [21:01] * ericjung|mtg is now known as ericjung
  2338. # [21:01] * Quits: darkowlzz (sunny@2D730B43.15D34F31.27560D6E.IP) (Quit: This computer has gone to sleep)
  2339. # [21:01] * jlund is now known as jlund|lunch
  2340. # [21:02] * hwine is now known as hwine-food
  2341. # [21:03] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Quit: Leaving.)
  2342. # [21:03] * Quits: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP) (Quit: davidb)
  2343. # [21:03] * sheppy-offline is now known as sheppy
  2344. # [21:03] * Quits: till (till@moz-A7BAAD81.adsl.alicedsl.de) (Client exited)
  2345. # [21:03] * Joins: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com)
  2346. # [21:04] * Joins: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP)
  2347. # [21:05] * Joins: erikvold (erikvold@1E9447C4.A8648A12.BB5E0503.IP)
  2348. # [21:05] * Quits: nicklebedev (nicklebede@moz-29D843ED.net151.n37.ru) (Quit: )
  2349. # [21:05] * Joins: grobinson|laptop (grob_@6C05C109.58B71505.20F09BA6.IP)
  2350. # [21:06] * Quits: briansmith (briansmith@moz-1111329D.meeting.ietf.org) (Ping timeout)
  2351. # [21:07] * Quits: Fallen (Fallen@moz-F0262F50.ch) (Ping timeout)
  2352. # [21:07] * Joins: briansmith (briansmith@moz-BD3C8C46.dedicated.allstream.net)
  2353. # [21:07] * philor|afk is now known as philor
  2354. # [21:07] * Quits: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2355. # [21:08] * Quits: ehugg (chatzilla@CC43922C.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 24.0/20130910160258])
  2356. # [21:08] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  2357. # [21:09] * Quits: jesup|laptop (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP) (Ping timeout)
  2358. # [21:09] * Quits: jedp|otp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2359. # [21:10] * Quits: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Ex-Chat)
  2360. # [21:14] * Quits: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP) (Ping timeout)
  2361. # [21:15] <@ehsan> gps: hang on, what have I done? :)
  2362. # [21:15] <@ted> gps: qbackout gets used a lot nowadays
  2363. # [21:16] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  2364. # [21:16] <@ehsan> has anybody seen an internal compiler error when entropy_coding_neno.c when building for b2g ics?
  2365. # [21:18] <tbsaunde> ehsan: RyanVM|sheriffduty has told me they see random ICEs with gcc 4.4 and retrigger them away
  2366. # [21:18] <@ehsan> hmm
  2367. # [21:18] <RyanVM|sheriffduty> ehsan: i wouldn't get worried unless it's repeatable
  2368. # [21:18] <@ehsan> rebuilding here doesn't seem to help
  2369. # [21:18] <RyanVM|sheriffduty> my bet is it goes away if you try again
  2370. # [21:18] <@ehsan> it's 100% reproducible
  2371. # [21:18] <RyanVM|sheriffduty> hmm, that sounds like something else then
  2372. # [21:18] <RyanVM|sheriffduty> sorry
  2373. # [21:18] <@ehsan> :(
  2374. # [21:19] * dhylands is now known as dhylands-smuxi
  2375. # [21:19] * Joins: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  2376. # [21:19] * dhylands-cloud is now known as dhylands
  2377. # [21:20] * Quits: thelodger (thelodger@7CE7EE7D.732E9882.12648089.IP) (Quit: Leaving.)
  2378. # [21:21] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2379. # [21:23] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  2380. # [21:23] <@ted> dmajor: ping
  2381. # [21:23] * mattwoodrow|away is now known as mattwoodrow
  2382. # [21:25] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2383. # [21:27] * Joins: sfosters (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  2384. # [21:27] * Quits: AsaDotzler (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2385. # [21:28] * Quits: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net) (Ping timeout)
  2386. # [21:28] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2387. # [21:28] * sfosters is now known as sfoster
  2388. # [21:29] * armenzg is now known as armenzg_brb
  2389. # [21:29] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2390. # [21:29] <tbsaunde> philor: any idea why retriggering builds in https://tbpl.mozilla.org/?tree=Try&rev=889aab4bde85 gave me all of the test jobs?
  2391. # [21:29] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2392. # [21:31] * Quits: dougt (dougt@moz-A89CF36B.vesrv.com) (Max SendQ exceeded)
  2393. # [21:31] * Quits: grobinson|laptop (grob_@6C05C109.58B71505.20F09BA6.IP) (Quit: Leaving)
  2394. # [21:31] * Quits: bholley (anonymous@moz-A2189431.hsd1.ca.comcast.net) (Quit: bholley)
  2395. # [21:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/85be8ab85fbf - Sankha Narayan Guria - Bug 931328 - IonMonkey: Inline Math.hypot(x, y). r=jandem, r=jorendorff
  2396. # [21:31] <jorendorff> w00t
  2397. # [21:31] <philor> tbsaunde: because that's what it does? test jobs happen because there's a buildstep called sendchange, that says "hey, got a build which needs to run these tests" so every time a retriggered build gets to that step, it says it wants to be tested
  2398. # [21:31] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/280a6f8ac4d2 - Peiyong Lin - Bug 935756 - Override FireAtkStateChangeEvent to avoid unnecessary accessible event creation. r=tbsaunde
  2399. # [21:31] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/0cb2c204abe1 - Jed Davis - Bug 936145 - Clean up architecture-specific parts of seccomp whitelist. r=kang
  2400. # [21:32] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/044c3c08e2c6 - Mats Palmgren - Bug 936286 - Add fuzzy to fix intermittent-failure in 472020-1a.xul. r=mats
  2401. # [21:32] * Joins: dougt (dougt@moz-A89CF36B.vesrv.com)
  2402. # [21:33] * coop|lunch is now known as coop
  2403. # [21:33] <grobinson> dholbert: looking at the bustage now
  2404. # [21:33] <philor> tbsaunde: and for bonus fun, retriggered builds upload over the top of the previous build, so you get that sort of half-busted effect when a lot finish at once, because tests are trying to download a tests.zip while a new one is uploading over the top of it
  2405. # [21:33] <dholbert> grobinson, cool, thanks
  2406. # [21:35] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Input/output error)
  2407. # [21:36] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  2408. # [21:36] * ChanServ sets mode: +o smaug
  2409. # [21:36] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2410. # [21:36] * Quits: mkmelin (mkmelin@moz-A7C10BC2.elisa-laajakaista.fi) (Ping timeout)
  2411. # [21:36] <tbsaunde> philor: ugh!
  2412. # [21:37] * tbsaunde feels bad for wasting a bunch of useless machine time now
  2413. # [21:37] <tbsaunde> philor: can you see if any of the build jobs failed? I can't quickly see through all the other failures
  2414. # [21:37] * Quits: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2415. # [21:37] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Quit: Gone to save the world!)
  2416. # [21:38] * Joins: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  2417. # [21:38] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  2418. # [21:38] <philor> tbsaunde: builds were all green, test failures were all uninteresting
  2419. # [21:38] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2420. # [21:39] * Joins: willyaranda (willyarand@moz-E9433E44.red-95-122-172.staticip.rima-tde.net)
  2421. # [21:40] * Quits: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Client exited)
  2422. # [21:40] * Joins: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  2423. # [21:40] <tbsaunde> philor: thanks a lot!
  2424. # [21:42] * Quits: vingtetun (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2425. # [21:43] <dmajor> ted: pong
  2426. # [21:43] * Joins: vingtetun (Thunderbir@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2427. # [21:43] <@ted> dmajor: i had firefox crash here and give me the windows crash dialog instead of ours
  2428. # [21:43] <@ted> the crash looks pretty innocuous though, just a near-NULL deref
  2429. # [21:44] * Joins: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP)
  2430. # [21:44] <@ted> i can see the breakpad dump writing thread just hanging out in a wait
  2431. # [21:45] * Joins: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  2432. # [21:45] * bent|lunch is now known as bent
  2433. # [21:46] * Quits: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  2434. # [21:47] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  2435. # [21:47] <dmajor> ted: huh. that's odd.
  2436. # [21:47] <@ted> yeah
  2437. # [21:47] <@ted> wondering if you had any thoughts on things to look at
  2438. # [21:47] * Quits: jgriffin (jgriffin@13F2CEC5.7672369.D8E68FF6.IP) (Quit: jgriffin)
  2439. # [21:47] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  2440. # [21:47] <@ted> i was running a webgl demo and had closed its window shortly before i crashed
  2441. # [21:47] <firebot> Check-in:
  2442. # [21:47] <@ted> so that could be related
  2443. # [21:48] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  2444. # [21:48] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/a9fe3f739b3f - Robert O'Callahan - Bug 926706. When nsGfxScrollFrameInner::UpdateOverflow decides we need to update the scrollbars, don't reflow the scrollframe with NS_FRAME_IS_DIRTY since that reflows all
  2445. # [21:48] <dmajor> are you in windbg or vs?
  2446. # [21:48] <firebot> descendants. Just reflow the frame itself and don't dirty anything else. r=tn a=lsblakk
  2447. # [21:48] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/9e723a037e6c - Robert O'Callahan - Bug 928607. Ensure that nsGfxScrollFrameInner::UpdatePosition clips the overflow area of its children. r=tn a=lsblakk
  2448. # [21:48] * sheppy is now known as sheppy-offline
  2449. # [21:49] * jlund|lunch is now known as jlund
  2450. # [21:49] * Joins: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com)
  2451. # [21:49] <@ted> VS
  2452. # [21:49] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  2453. # [21:49] <dmajor> doh :)
  2454. # [21:49] <@ted> i forgot to setup windbg to show up in the JIT debug dialog
  2455. # [21:49] <@ted> yeah :-/
  2456. # [21:50] <dmajor> !exchain might be interesting -- maybe you can save a .dmp and transfer over
  2457. # [21:50] <@ted> saved a dump already, will check that out
  2458. # [21:50] * armenzg_brb is now known as armenzg
  2459. # [21:50] <dmajor> I wonder if there's a way to poke at whatever storage SetUnhandledExceptionFilter gets saved to
  2460. # [21:51] * Quits: damons (gnubeard@9EF89678.76294AC8.4A816864.IP) (Quit: damons)
  2461. # [21:51] <@ted> i dunno
  2462. # [21:51] <@ted> i saw a crash once where we memmove'd a bogus range and stomped all over the breakpad exceptionhandler stuff
  2463. # [21:51] * hwine-food is now known as hwine
  2464. # [21:51] <@ted> but that showed up differently, we crashed again in the exception handler
  2465. # [21:51] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2466. # [21:52] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  2467. # [21:53] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2468. # [21:54] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  2469. # [21:54] * Quits: Archaeopteryx (itsme@moz-4DFF21E0.cust.telecolumbus.net) (Ping timeout)
  2470. # [21:54] <mjh563> is mxr search broken?
  2471. # [21:54] <mjh563> http://mxr.mozilla.org/mozilla-central/search?string=AsyncConnectionHelper
  2472. # [21:54] * Quits: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP) (Ping timeout)
  2473. # [21:54] <mjh563> only finds 8 matching lines in 1 file
  2474. # [21:55] <nalexander> mjh563: you could cross reference with dxr.
  2475. # [21:55] * jhopkins|buildduty is now known as jhopkins|bbiab
  2476. # [21:55] <nalexander> mjh563: but that search does seem busted, since http://mxr.mozilla.org/mozilla-central/search?string=AsyncConnection returns additional hits.
  2477. # [21:55] <nalexander> (for ...Helper)
  2478. # [21:56] * Joins: tessarakt2 (jens@moz-8B45C6C2.dip0.t-ipconnect.de)
  2479. # [21:56] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2480. # [21:56] * Joins: gabor (gabor@moz-FB2F2D29.dsl.pool.telekom.hu)
  2481. # [21:57] * Joins: damons (gnubeard@9EF89678.76294AC8.4A816864.IP)
  2482. # [21:57] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/be23143070b8 - Jeff Muizelaar - Bug 919454 - Add a rule to catch broken StretchRect(). r=bjacob, a=lsblakk
  2483. # [21:58] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/a06c19f60b60 - Masayuki Nakano - Bug 932168 - Use simple IME context when focus field has focus (partially backing out a patch for bug 906072). r=karlt, a=lsblakk
  2484. # [21:58] * Quits: erikvold (erikvold@1E9447C4.A8648A12.BB5E0503.IP) (Ping timeout)
  2485. # [21:58] * Joins: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP)
  2486. # [21:59] <@ted> dmajor: i don't really know how to interpret !exchain: pastebin.mozilla.org/3457554
  2487. # [21:59] * sheppy-offline is now known as sheppy
  2488. # [22:00] * Joins: Archaeopteryx (itsme@moz-4DFF21E0.cust.telecolumbus.net)
  2489. # [22:00] * Joins: erikvold (erikvold@176BE85E.A8648A12.BB5E0503.IP)
  2490. # [22:00] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2491. # [22:01] <dmajor> ted: I think those are handlers currently on the stack, for example I see that MessageLoop::RunHandler has some SEH in it
  2492. # [22:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f9cbcd8206a0 - John Schoenick - Bug 883404 - Add a object.reload() call for chrome to de-activate plugins. r=josh
  2493. # [22:02] * Joins: ehugg (chatzilla@CC43922C.29102B70.6CD50604.IP)
  2494. # [22:02] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/be16f683e996 - John Schoenick - Bug 923745 - Force flash to use a windowless mode in e10s until windowed mode plugins are fixed. r=bsmedberg
  2495. # [22:02] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/141085686227 - John Schoenick - Bug 904835 - Don't stomp on the new plugin's prototype if we load a plugin nested inside unloading a plugin. r=josh
  2496. # [22:03] <@ted> ah
  2497. # [22:03] <dmajor> ted: nothing looks out of the ordinary, e.g. MyMalware123.dll :)
  2498. # [22:03] <@ted> heh
  2499. # [22:03] * Joins: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  2500. # [22:04] <@ted> i'm boggled as to why this didn't trip our exception handler
  2501. # [22:04] * KWierso is now known as KWierso|sheriffduty
  2502. # [22:04] <@ted> the actual crash is just an access violation read
  2503. # [22:04] <dmajor> is the exception code anything unusual? or garden variety AV? ah
  2504. # [22:05] <@ted> we hook SetExceptionHandler to avoid having it reset on us
  2505. # [22:05] * RyanVM|sheriffduty is now known as RyanVM
  2506. # [22:05] * hwine is now known as hwine|mtg
  2507. # [22:05] <dmajor> yeah
  2508. # [22:06] <botond> sheppy: hello
  2509. # [22:06] <sheppy> botond: howdy
  2510. # [22:06] * corey is now known as corey|away
  2511. # [22:06] <botond> sheppy: did you write https://developer.mozilla.org/en-US/docs/Multi-Process_Architecture/Working_with_content_views?
  2512. # [22:07] * Quits: gabor (gabor@moz-FB2F2D29.dsl.pool.telekom.hu) (Ping timeout)
  2513. # [22:07] <sheppy> botond: Yes, although it would have been off notes provided by someone.
  2514. # [22:07] <sheppy> It's been long enough that I don't recall from whom.
  2515. # [22:08] <sheppy> The page history sometimes indicates where I got my information, but not in this case.
  2516. # [22:08] <@ted> dmajor: the only other oddity here is that the update service updated my build in the background
  2517. # [22:08] <@ted> so my app was running from the to-be-deleted/*.tmp files
  2518. # [22:09] <TheOne> is the dock icon for today's Aurora Mac build blurry for anyone else?
  2519. # [22:09] <botond> sheppy: hg indicates that the code was mostly written by Chris Jones and Benjamin Stover, but they're not around anymore. i was hoping you might be familiar with it given that you wrote the docs... oh well, i'll just read through the code. thanks!
  2520. # [22:09] * @ted wanders off
  2521. # [22:10] <JosiahOne> Anyone seen this recently on Mac? http://pastebin.mozilla.org/3457342
  2522. # [22:10] <JosiahOne> (Or something similar)
  2523. # [22:10] <sheppy> botond: It's been long enough that what little I probably directly knew about it is long evaporated, I'm afraid.
  2524. # [22:10] <sheppy> That said -- if you learn anything that's not clear in the doc, please, please add it!
  2525. # [22:10] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2526. # [22:10] <sheppy> And if you're not confident with your writing, add it anyway, then ping me to tidy it up.
  2527. # [22:11] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  2528. # [22:11] <TheOne> http://imgur.com/lTopeH0
  2529. # [22:12] <tbsaunde> botond: I think cjones is around a little just not on irc, and bent owns ipc/ even if he claims not to own it
  2530. # [22:12] <tbsaunde> err, s/own it/ know it/
  2531. # [22:13] <botond> sheppy: bent = Ben Turner != Ben Stover
  2532. # [22:13] <botond> whoops, tbsaunde ^
  2533. # [22:14] * Joins: inolen (Adium@A88571AE.CDFDA8DC.591ED24F.IP)
  2534. # [22:15] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  2535. # [22:15] * hwine|mtg is now known as hwine
  2536. # [22:15] * Quits: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP) (Quit: Time to optimize myself)
  2537. # [22:15] * Quits: mstange (markus@moz-76BBBB45.dip0.t-ipconnect.de) (Quit: mstange)
  2538. # [22:15] <botond> sheppy: well, looking at the docs it seems to me that the interfaces nsIContentView and nsIContentViewManager were at some point intended to be used by chrome js and/or addons. however, no chrome js currently uses it. moreover, i think there is code that makes assumptions that would break if something like nsIContentView.scrollTo were used by script
  2539. # [22:16] <sheppy> botond: Hm... OK. If you can help sort that out, that would obviously be a huge deal.
  2540. # [22:16] <botond> sheppy: do you know if there is a way to check whether a particular interface is used by any addons (that we know about)?
  2541. # [22:16] <sheppy> I do not like when my docs are incorrect or misleading.
  2542. # [22:16] * Quits: Jackneill (Jackneill@moz-4F3809C5.pool.digikabel.hu) (Ping timeout)
  2543. # [22:16] <sheppy> botond: ask the AMO guys? I think they have a way to check that.
  2544. # [22:16] <tbsaunde> botond: mxr.mozilla.org/addons
  2545. # [22:17] * Quits: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2546. # [22:17] <tbsaunde> botond: yes, and what is your point about bent? he's most definitely around
  2547. # [22:18] * mccr8|lunch is now known as mccr8
  2548. # [22:18] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  2549. # [22:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7f083546aa95 - Matthew Gregan - Bug 935343 - Convert content/media/tests to manifest format. r=doublec
  2550. # [22:18] * Quits: erikvold (erikvold@176BE85E.A8648A12.BB5E0503.IP) (Quit: erikvold)
  2551. # [22:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f2f60a737f5b - Matthew Gregan - Bug 935343 - Add MOZ_{OGG,WEBM,DASH} to mozinfo. r=ted
  2552. # [22:18] <bent> no i'm not
  2553. # [22:18] <botond> tbsaunde: i thought you were saying that Ben Stover was bent on irc
  2554. # [22:18] <bent> move along
  2555. # [22:18] * corey|away is now known as corey
  2556. # [22:18] <dmajor> ted: http://royce-lu.blogspot.com/2010/06/how-to-check-top-level-unhandle.html (looks mildly painful)
  2557. # [22:18] <RyanVM> bent: RUN!
  2558. # [22:18] <bent> nothing to see here
  2559. # [22:19] * Joins: Fallen|away (Fallen@moz-F0262F50.ch)
  2560. # [22:19] <tbsaunde> bent: see you're just proving you're still the bent we know :)
  2561. # [22:19] <Archaeopteryx> botond: there is an add-ons mxr for amo hosted add-ons, but not for the ones in the dark matter
  2562. # [22:19] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
  2563. # [22:21] * Joins: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com)
  2564. # [22:21] <botond> Archaeopteryx, tbsaunde: so let's say a search turns up results in https://mxr.mozilla.org/addons/source/410914/ - how can i see what this addon actually is?
  2565. # [22:22] * JosiahOne is now known as JosiahOne|Away
  2566. # [22:22] <tbsaunde> botond: easiest is probably look at its install.rdf
  2567. # [22:24] <Archaeopteryx> botond: https://addons.mozilla.org/de/firefox/addon/410914
  2568. # [22:24] * mattwoodrow is now known as mattwoodrow|away
  2569. # [22:24] <Archaeopteryx> sorry for the german link
  2570. # [22:25] * geekboy is now known as geekboy|afk
  2571. # [22:25] * Quits: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Quit: Leaving)
  2572. # [22:25] <botond> Archaeopteryx: thanks!
  2573. # [22:27] * Quits: jammink (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2574. # [22:27] * Fallen|away is now known as Fallen
  2575. # [22:27] * Joins: jonasfj (jonasfj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2576. # [22:28] * Quits: damons (gnubeard@9EF89678.76294AC8.4A816864.IP) (Quit: damons)
  2577. # [22:29] * Quits: briansmith (briansmith@moz-BD3C8C46.dedicated.allstream.net) (Ping timeout)
  2578. # [22:30] * Quits: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Boriss)
  2579. # [22:31] <RyanVM> mbrubeck: looks like you've got an mc failure on fx-team
  2580. # [22:31] <RyanVM> i retriggered it
  2581. # [22:32] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2582. # [22:33] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2583. # [22:33] * bc is now known as bc|bbl
  2584. # [22:34] * Quits: rogeliodh (Thunderbir@C028F7D5.E9836DFB.D67CC001.IP) (Quit: rogeliodh)
  2585. # [22:35] <KWierso|sheriffduty> RyanVM: happened again on the merge above it :\
  2586. # [22:35] <RyanVM> yep, already out :)
  2587. # [22:36] <jgilbert> my high score for firefox memory usage: 7.1GB :D
  2588. # [22:36] <RyanVM> impressive
  2589. # [22:36] <WeirdAl> wow
  2590. # [22:37] <WeirdAl> either one hell of a memory leak, or a lot of windows/tabs/movies open
  2591. # [22:37] <jgilbert> ~3.5GB heap-unclassified
  2592. # [22:38] * Joins: briansmith (briansmith@moz-BD3C8C46.dedicated.allstream.net)
  2593. # [22:38] <jgilbert> killed+restore session gives me 900MB, with 480MB unclassified
  2594. # [22:38] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2595. # [22:38] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2596. # [22:39] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/0453bfbb7816 - Gregory Szorc - Bug 907902 - Create system isolated virtualenv, remove --system-ply support. r=glandium, a=NPOTB
  2597. # [22:39] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/6e9a9d2dd813 - John Hopkins - Bug 894903 - Add new VS2010 install location to build PATH. r=ted, a=NPOTB
  2598. # [22:39] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/6b58f3325334 - John Hopkins - Bug 918414 - Look for gapi.data on c: then e:. r=catlee, a=NPOTB
  2599. # [22:39] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/faec76c7d010 - Mike Hommey - Bug 925894 - Normalize cl generated dependencies before testing for spaces in them. r=gps, a=NPOTB
  2600. # [22:40] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/56f3c1c99217 - John Hopkins - Bug 919528 - Export LD path that works with both GNU make and Pymake. r=catlee, a=NPOTB
  2601. # [22:40] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/a1ba39670cbb - John Hopkins - Bug 919528 - Use short path to MSVS10, set LD using _VSPATH. r=ted, a=NPOTB
  2602. # [22:40] * mjrosenb stabs gdb
  2603. # [22:40] * mjrosenb stabs gdb
  2604. # [22:40] * mjrosenb stabs gdb
  2605. # [22:40] * mjrosenb was kicked by killer (Stop repeating yourself!)
  2606. # [22:40] * Joins: mjrosenb (mjrosenb@moz-22104996.hsd1.pa.comcast.net)
  2607. # [22:40] <jgilbert> hah
  2608. # [22:41] <mjrosenb> well, that was fun.
  2609. # [22:41] <dholbert> gdb has a hit man
  2610. # [22:41] <jgilbert> killer's a gdb shill!
  2611. # [22:41] * Joins: six600110 (six600110@moz-C663577C.hsd1.il.comcast.net)
  2612. # [22:42] <mjrosenb> so there's this fun thing where when gdb prompts you for a y/n question, it just looks at the first character of your response
  2613. # [22:42] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  2614. # [22:42] * Callek is now known as Callek_disconnected
  2615. # [22:42] <mjrosenb> so 'y','yes', 'yams' are all the same
  2616. # [22:42] <mjrosenb> *and*
  2617. # [22:43] <mjrosenb> when you are in certain modes, it isn't paying attention to any control characters
  2618. # [22:43] <dholbert> the upside is that "you betcha" gets handled correctly
  2619. # [22:43] <mjrosenb> so if you type q
  2620. # [22:43] * Quits: wolfiR (wolfiR@moz-2D545C91.dip0.t-ipconnect.de) (Quit: Leaving)
  2621. # [22:43] <bbouvier> so you can answer YOLO
  2622. # [22:43] <mjrosenb> then it says "are you sure you want to exit (y/n)", and you type "y<BACKSPACE>n"
  2623. # [22:44] <mjrosenb> the buffer presumably has "y^Hn" in it
  2624. # [22:44] * Quits: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com) (Ping timeout)
  2625. # [22:44] <mjrosenb> which gets interpreted as 'y'
  2626. # [22:44] * Joins: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP)
  2627. # [22:44] <mjrosenb> which then leads to me getting kicked from #developers.
  2628. # [22:45] <Ms2ger> Heh
  2629. # [22:45] * Quits: fredw (fredw@moz-B9C110E2.fbx.proxad.net) (Quit: Leaving.)
  2630. # [22:45] * Joins: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com)
  2631. # [22:47] * Quits: briansmith (briansmith@moz-BD3C8C46.dedicated.allstream.net) (Ping timeout)
  2632. # [22:47] * Quits: Ms2ger (Ms2ger@moz-EA6EE9F3.adsl-dyn.isp.belgacom.be) (Quit: nn)
  2633. # [22:48] * Quits: msucan (mihai@50FD98E9.85233D2F.C0E37CF3.IP) (Quit: Leaving.)
  2634. # [22:49] * Joins: mixedpuppy_ (mixedpuppy@A6CF435B.D1155E2C.CFC2A289.IP)
  2635. # [22:49] * Joins: AsaDotzler (asa@moz-BBE3ABD.mv.mozilla.com)
  2636. # [22:50] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2637. # [22:50] * Quits: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net) (Ping timeout)
  2638. # [22:50] * Quits: drexler (drexler@moz-155EA683.cncdnh.east.myfairpoint.net) (Ping timeout)
  2639. # [22:51] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2640. # [22:51] * geekboy|afk is now known as geekboy
  2641. # [22:51] <reuben> https://mxr.mozilla.org/mozilla-central/source/js/xpconnect/crashtests/905523.html?force=1 eeeeek
  2642. # [22:51] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2643. # [22:52] * julienw_afk is now known as julienw
  2644. # [22:52] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2645. # [22:53] * Quits: mjh563 (mjh563@moz-E385BD04.cable.virginm.net) (Ping timeout)
  2646. # [22:53] * Joins: lpy (lpy@12172131.F09091A8.1348A864.IP)
  2647. # [22:53] * Quits: rednaks (rednaks@BC151105.2624113F.55FFA9B4.IP) (Client exited)
  2648. # [22:54] * Quits: lpy (lpy@12172131.F09091A8.1348A864.IP) (Connection reset by peer)
  2649. # [22:54] * Joins: philipp64 (chatzilla@moz-B40B9015.ctcweb.net)
  2650. # [22:54] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2651. # [22:54] * Joins: rednaks (rednaks@BC151105.2624113F.55FFA9B4.IP)
  2652. # [22:55] * Quits: Optimizer (Optimizer@1740DCA.867BB49C.BE4CF869.IP) (Quit: Time to optimize myself)
  2653. # [22:56] * Joins: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net)
  2654. # [22:58] <mbrubeck> kats: Looks like there was a typo in my patch that you landed: https://hg.mozilla.org/integration/fx-team/rev/a562387a27bb#l1.55
  2655. # [22:58] <mbrubeck> Elements.browser should be Elements.browsers (with an 's' at the end)
  2656. # [22:58] <mbrubeck> sorry
  2657. # [22:59] * Joins: dmarcos_ (dmarcos@E7D45CB1.2FFE2249.27C4FA62.IP)
  2658. # [23:00] <mbrubeck> kats: I can fix that, test locally, and re-land.
  2659. # [23:02] * Joins: grobinson|laptop (grob_@moz-BDF6CD7A.snydernet.net)
  2660. # [23:03] * Joins: m_gol (m_gol@moz-B23B500D.play-internet.pl)
  2661. # [23:04] <kats> mbrubeck: oh thanks
  2662. # [23:05] * Quits: TimAbraldes (Instantbir@moz-7FD19BDC.hsd1.or.comcast.net) (Quit: TimAbraldes)
  2663. # [23:05] * Joins: myk (myk@moz-BBE3ABD.mv.mozilla.com)
  2664. # [23:06] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2665. # [23:08] * Quits: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com) (Input/output error)
  2666. # [23:08] * Joins: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com)
  2667. # [23:09] * corey is now known as corey|away
  2668. # [23:09] <mbrubeck> kats: Hmm, there's one failing test that's not related to that typo -- browser_snappedState.js still has some timeouts
  2669. # [23:09] <mbrubeck> I'll look into that too.
  2670. # [23:10] * Quits: teoli (teoli@moz-6FE1F56F.range86-129.btcentralplus.com) (Ping timeout)
  2671. # [23:11] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Quit: yzen)
  2672. # [23:11] <@smaug> what holiday is next Monday?
  2673. # [23:11] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2674. # [23:12] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2675. # [23:13] * Quits: Mossop (dtownsend@moz-242CA735.lsanca.fios.verizon.net) (Quit: Leaving)
  2676. # [23:13] <kats> rememberance day (in some parts of the world)
  2677. # [23:14] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2678. # [23:14] <mjrosenb> kats: that sounds familiar...
  2679. # [23:14] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2680. # [23:14] <KWierso|sheriffduty> kats: veterans day in the states
  2681. # [23:15] <KWierso|sheriffduty> er, mjrosenb ^
  2682. # [23:15] <kats> mbrubeck: where's this snappedState.js failure? was it on Fx-Team?
  2683. # [23:15] <kats> oh, found it
  2684. # [23:15] <kats> it wasn't in the tbpl summary
  2685. # [23:15] <mbrubeck> kats: yes - you have to search the log for browser_snappedState.js since the initial extract cut off at 100
  2686. # [23:15] <mbrubeck> yeah
  2687. # [23:16] * Joins: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com)
  2688. # [23:17] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2689. # [23:17] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2690. # [23:18] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2691. # [23:18] * Quits: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com) (Ping timeout)
  2692. # [23:19] * Quits: heftig (heftig@moz-76BC6A3B.dip0.t-ipconnect.de) (Quit: Quitting)
  2693. # [23:19] * armenzg is now known as armenzg_afk
  2694. # [23:20] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2695. # [23:20] * Joins: heftig (heftig@moz-76BC6A3B.dip0.t-ipconnect.de)
  2696. # [23:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dce293d67491 - Hannes Verschore - No bug - IonMonkey: Check return value of pushTypeBarrier, r=mjrosenb
  2697. # [23:21] * Quits: rednaks (rednaks@BC151105.2624113F.55FFA9B4.IP) (Quit: Téléportation !)
  2698. # [23:21] * Quits: ahal (ahal@moz-94F07FF4.cable.teksavvy.com) (Input/output error)
  2699. # [23:21] * spohl is now known as spohl|away
  2700. # [23:22] * Joins: sewardj_ (sewardj@moz-B60B056.dip0.t-ipconnect.de)
  2701. # [23:22] * julienw is now known as julienw_afk
  2702. # [23:23] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  2703. # [23:23] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2704. # [23:23] * Quits: armenzg_afk (armenzg@moz-DC6D6B46.home1.cgocable.net) (Quit: Leaving)
  2705. # [23:24] * Quits: ggp (ggp@23E389F5.7CE419F9.1160D82E.IP) (Quit: Leaving...)
  2706. # [23:25] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  2707. # [23:26] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2708. # [23:26] * Joins: annevk (annevk@B61E237F.ACD3336.276CF2D2.IP)
  2709. # [23:27] * kats is now known as kats|away
  2710. # [23:28] * Quits: gkw (fuzz2lin@moz-BBE3ABD.mv.mozilla.com) (Quit: leaving)
  2711. # [23:30] * Quits: wlach (wlach@5A322A17.4F9B71DB.80C20C35.IP) (Quit: Leaving)
  2712. # [23:31] <jrmuizel> nrc: ping
  2713. # [23:31] * julienw_afk is now known as julienw
  2714. # [23:31] * Joins: gkw (fuzz2lin@moz-BBE3ABD.mv.mozilla.com)
  2715. # [23:33] <mccr8> so, I'm changing js/src/moz.build and the build system doesn't seem to be picking it up. I can just type random garbage into it and it doesn't seem to care
  2716. # [23:33] <mccr8> even when I run mach build at the top level
  2717. # [23:33] <mccr8> is there some known issue with that?
  2718. # [23:34] * Quits: grapenuts (chatzilla@moz-B38E5938.dhcp.plbg.ny.charter.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0a2/20131108004000])
  2719. # [23:34] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2720. # [23:35] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  2721. # [23:37] * Quits: MattN (MattN@A8588C62.B1B6FA80.709ED47B.IP) (Input/output error)
  2722. # [23:38] * Joins: TimAbraldes (Instantbir@moz-BF4D134B.hsd1.or.comcast.net)
  2723. # [23:39] * Joins: MattN (MattN@A8588C62.B1B6FA80.709ED47B.IP)
  2724. # [23:39] * Joins: dmarcos- (dmarcos@EC4AD7D2.BC8C1F6C.24A6C83A.IP)
  2725. # [23:39] * Quits: dmarcos- (dmarcos@EC4AD7D2.BC8C1F6C.24A6C83A.IP) (Input/output error)
  2726. # [23:40] <jrmuizel> mconley: https://pastebin.mozilla.org/3458124
  2727. # [23:40] * Quits: dmarcos_ (dmarcos@E7D45CB1.2FFE2249.27C4FA62.IP) (Ping timeout)
  2728. # [23:43] <nrc> jrmuizel: pong
  2729. # [23:43] <froydnj> Waldo: bug 608915 is a trivial review if you have a trivial amount of time for it
  2730. # [23:44] * Joins: mreavy (chatzilla@22F6FD6D.EA955E46.D6F3DB9.IP)
  2731. # [23:45] * jlund is now known as jlund|coffee
  2732. # [23:45] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  2733. # [23:46] <jrmuizel> nrc: css transition scheduling, do you know about it?
  2734. # [23:46] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  2735. # [23:46] <nrc> jrmuizel: not sure what you mean by scheduling, so maybe
  2736. # [23:46] <jrmuizel> nrc: nsTransitionManager
  2737. # [23:46] <nrc> I know that class quite well
  2738. # [23:47] <jrmuizel> nrc: so we're do we decide whether to continue animating
  2739. # [23:47] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2740. # [23:47] <nrc> jrmuizel: as in, whether the animation is finsihed or not?
  2741. # [23:47] * Quits: m_gol (m_gol@moz-B23B500D.play-internet.pl) (Ping timeout)
  2742. # [23:47] <jrmuizel> nrc: yes
  2743. # [23:48] <jrmuizel> nrc: FlushTransitions?
  2744. # [23:48] <nrc> jrmuizel: http://dxr.mozilla.org/mozilla-central/source/layout/style/nsTransitionManager.cpp?from=nsTransitionManager.cpp#l1087
  2745. # [23:48] * Quits: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP) (Client exited)
  2746. # [23:48] <nrc> yes
  2747. # [23:49] * Quits: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net) (Quit: RyanVM)
  2748. # [23:49] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Client exited)
  2749. # [23:50] * Quits: sfink (chatzilla@moz-3B808515.dsl.pltn13.sbcglobal.net) (Ping timeout)
  2750. # [23:51] * Joins: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP)
  2751. # [23:51] * Joins: ekr_ (ekr@moz-E69E2ABE.meeting.ietf.org)
  2752. # [23:52] <jrmuizel> nrc: and that 'else if' after that is called for all running transitions?
  2753. # [23:53] * catlee is now known as catlee-away
  2754. # [23:53] <jrmuizel> nrc: what is the throttling stuff about?
  2755. # [23:53] <nrc> jrmuizel: yes, but pt.mStartTime <= now means it only happens for ones which are not yet running
  2756. # [23:53] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  2757. # [23:53] <Waldo> froydnj: I wouldn't quite call that trivial, exactly, but r+
  2758. # [23:54] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2759. # [23:54] <jrmuizel> nrc: why does pt.mStartTime <= now mean that it only happens for ones which are not yet running?
  2760. # [23:54] * Quits: ekr_ (ekr@moz-E69E2ABE.meeting.ietf.org) (Quit: Colloquy for iPhone - http://colloquy.mobi)
  2761. # [23:54] <jrmuizel> nrc: isn't that true for ones that are currently running?
  2762. # [23:54] <nrc> jrmuizel: for OMTA we throttle flushing, it means we don't do a style flush if the animation is OMTA
  2763. # [23:54] * julienw is now known as julienw_afk
  2764. # [23:54] <jrmuizel> nrc: ah ok
  2765. # [23:55] <@ehsan> jrmuizel: https://bugzilla.mozilla.org/page.cgi?id=splinter.html&bug=936446&attachment=829583
  2766. # [23:55] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2767. # [23:55] * Quits: @bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net) (Ping timeout)
  2768. # [23:56] <nrc> jrmuizel: er, yeah, sorry, read the <= the wrong way
  2769. # [23:56] * jmaher is now known as jmaher|afk
  2770. # [23:57] * Quits: Pike (chatzilla@moz-E853053D.pool.mediaways.net) (Quit: ChatZilla 0.9.90.1 [Firefox 24.0/20130910160258])
  2771. # [23:57] <jrmuizel> nrc: ok good
  2772. # [23:57] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  2773. # [23:57] * Joins: bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net)
  2774. # [23:57] * ChanServ sets mode: +o bz
  2775. # [23:57] * bz is now known as bz_away
  2776. # [23:58] * rail is now known as rail_away
  2777. # [23:58] * Quits: jimm (jmathies@moz-F22D2B2A.pn.at.cox.net) (Quit: )
  2778. # Session Close: Sat Nov 09 00:00:00 2013

The end :)