/irc-logs / mozilla / #developers / 2014-10-02 / end

Options:

  1. # Session Start: Thu Oct 02 00:00:01 2014
  2. # Session Ident: #developers
  3. # [00:00] <kats> bad little fish!
  4. # [00:00] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  5. # [00:00] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  6. # [00:00] <dholbert> or however it's spelled
  7. # [00:00] <kats> it does get frozen after a few seconds
  8. # [00:00] <ehsan_> dholbert: xMidYMid didn't change a thing
  9. # [00:00] <dholbert> ehsan_, preserveAspectRatio="none" definitely works
  10. # [00:00] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  11. # [00:00] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  12. # [00:00] <ehsan_> kats: yes, that is the inifinite loop ;)
  13. # [00:00] * Kripton is now known as kripton
  14. # [00:01] <ehsan_> dholbert: aha! none definitely works, yes!
  15. # [00:01] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  16. # [00:01] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  17. # [00:01] * ehsan_ stares at https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/preserveAspectRatio
  18. # [00:01] <dholbert> ehsan_, "xMidYMid slice"
  19. # [00:01] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  20. # [00:01] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  21. # [00:01] <dholbert> ehsan_, that works
  22. # [00:01] <dholbert> ehsan_, or "xMidYMid meet"
  23. # [00:01] <dholbert> depending on the behavior your want
  24. # [00:02] <dholbert> (you might also want xMinYMin)
  25. # [00:02] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  26. # [00:02] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  27. # [00:02] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  28. # [00:02] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  29. # [00:02] <ehsan_> dholbert: "xMidYMid meet" doesn't seem to do anything...
  30. # [00:02] <ehsan_> but the slice variant does something
  31. # [00:02] <dholbert> ehsan_, that's the default behavior, IIRC
  32. # [00:02] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  33. # [00:02] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  34. # [00:02] <dholbert> ehsan_, xMidYMid meet is the default
  35. # [00:02] <ehsan_> dholbert: the behavior that I _want_ is the image to be scaled as if it were a normal image
  36. # [00:02] <dholbert> ehsan_, then "none" is what you want, I think
  37. # [00:03] <dholbert> ehsan_, assuming that by "normal" you mean "lol let me mess up your aspect ratio"
  38. # [00:03] <ehsan_> dholbert: ah yes, ok that works
  39. # [00:03] <ehsan_> dholbert: now
  40. # [00:03] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  41. # [00:03] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  42. # [00:03] <ehsan_> here's the behavior I *actually* want ;)
  43. # [00:03] * coop|buildduty is now known as coop|afk
  44. # [00:04] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  45. # [00:04] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  46. # [00:04] <ehsan_> dholbert: 1. if the dimensions of the img is smaller than the viewBox, I want the content to be scaled down, preserving the aspect ratio, and then be centered either horizontally on vertically
  47. # [00:04] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  48. # [00:04] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  49. # [00:04] * Quits: bz_away (bzbarsky@moz-29D2559C.hfc.comcastbusiness.net) (Ping timeout)
  50. # [00:04] <dholbert> sfink [just saw your Persona comment. :p ]
  51. # [00:05] <ehsan_> dholbert: 2. if the dimensions of the img is larger than the viewBox, I want the image to not be resized but centered vertically and horizontally
  52. # [00:05] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  53. # [00:05] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  54. # [00:05] * Quits: gaurav0x (gaurav_rai@62809C80.C64D1041.73A1137B.IP) (Quit: Leaving)
  55. # [00:05] <dholbert> ehsan_, you want "object-fit: scale-down; object-position: center center"
  56. # [00:05] <dholbert> ehsan_, which is not yet available but Coming Soon
  57. # [00:05] * mcote is now known as mcote|afk
  58. # [00:05] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  59. # [00:05] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  60. # [00:05] <ehsan_> dholbert: that's supposed to be set on the img?
  61. # [00:06] <dholbert> ehsan_, yes (but won't do anything right now)
  62. # [00:06] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  63. # [00:06] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  64. # [00:06] <ehsan_> dholbert: but what if I want to control this within the SVG resource itself?
  65. # [00:06] * Joins: brendan (brendaneic@6A24F57D.51C7F032.FA49AE52.IP)
  66. # [00:06] <ehsan_> dholbert: let's say I have no control over the size of the container
  67. # [00:06] <dholbert> ehsan_, I don't think preserveAspectRatio/viewBox gives you the "scale down, but don't scale up" ability
  68. # [00:06] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  69. # [00:06] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  70. # [00:06] <dholbert> ehsan_, size *or style* of the container?
  71. # [00:06] <ehsan_> dholbert: neither
  72. # [00:06] <dholbert> ehsan_, (so you can't set "object-fit" in the host document)
  73. # [00:06] <dholbert> ok
  74. # [00:06] <ehsan_> I *only* have control over the SVG file
  75. # [00:07] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  76. # [00:07] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  77. # [00:07] <dholbert> ehsan_, well... you could do something crazy with nesting, probably
  78. # [00:07] * hwine is now known as hwine-coffee
  79. # [00:07] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  80. # [00:07] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  81. # [00:07] <ehsan_> dholbert: nesting?
  82. # [00:07] * mkohler is now known as mkohler|afk
  83. # [00:08] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving)
  84. # [00:08] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  85. # [00:08] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  86. # [00:08] <dholbert> e.g. you could do <svg><foreignObject><img src="theRealImage.svg" style="object-fit: scale-down"></foreignObject></svg> :)
  87. # [00:08] * kats is now known as kats|away
  88. # [00:08] <dholbert> ehsan_, ^
  89. # [00:08] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  90. # [00:08] <ehsan_> haha
  91. # [00:08] <ehsan_> ok
  92. # [00:08] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  93. # [00:08] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  94. # [00:08] <ehsan_> dholbert: is there any human readable documentation which explains the sizing rules in play here in plain English? :)
  95. # [00:09] <ehsan_> (the MDN page doesn't meet that bar)
  96. # [00:09] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  97. # [00:09] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  98. # [00:09] * nsm is now known as nsm|away
  99. # [00:09] * ehsan_ finds http://tutorials.jenkov.com/svg/svg-viewport-view-box.html
  100. # [00:09] <dholbert> ehsan_, including object-fit? or ignoring it?
  101. # [00:09] <ehsan_> dholbert: ignoring it
  102. # [00:10] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  103. # [00:10] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  104. # [00:10] <ehsan_> dholbert: (that's not even supported by other UAs is it?)
  105. # [00:10] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  106. # [00:10] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  107. # [00:10] <dholbert> ehsan_, it is in Chrome, and other UAs intend to support it
  108. # [00:11] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  109. # [00:11] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  110. # [00:11] <ehsan_> dholbert: oh cool, even IE?
  111. # [00:11] <ehsan_> (what about safari?)
  112. # [00:11] <dholbert> ehsan_, they are "not opposed", or something like that
  113. # [00:11] * Joins: milan (milan@moz-69F4F0E.dsl.bell.ca)
  114. # [00:11] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  115. # [00:11] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  116. # [00:11] <ehsan_> kk
  117. # [00:11] <dholbert> ehsan_, and there's a bug on file for webkit
  118. # [00:11] <dholbert> ehsan_, anyway
  119. # [00:11] <ehsan_> dholbert: so perhaps, including object-fit :)
  120. # [00:11] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  121. # [00:11] * Quits: kip (kip@9D222422.D1155E2C.CFC2A289.IP) (Client exited)
  122. # [00:12] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  123. # [00:12] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  124. # [00:12] <dholbert> ehsan_, ignoring object-fit for now: http://www.w3.org/TR/SVG11/coords.html#ViewBoxAttribute describes how viewBox & pAR behave reasonably well, though it's probably not "plain english"
  125. # [00:12] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  126. # [00:12] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  127. # [00:12] * Quits: mt_ (mt@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  128. # [00:12] <ehsan_> that might do...
  129. # [00:12] <dholbert> ehsan_, the example at the bottom of section 7.8 is pretty handy too
  130. # [00:12] <dholbert> ehsan_, http://www.w3.org/TR/SVG11/images/coords/PreserveAspectRatio.svg
  131. # [00:13] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  132. # [00:13] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  133. # [00:13] <ehsan_> awesome
  134. # [00:13] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  135. # [00:13] <ehsan_> that's actually what I was looking for :)
  136. # [00:13] <dholbert> ehsan_, cool!
  137. # [00:13] <ehsan_> dholbert: thanks a ton!
  138. # [00:13] <ehsan_> dholbert: and ftr, I'm not crying any more :)
  139. # [00:13] <dholbert> \o/
  140. # [00:13] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  141. # [00:13] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  142. # [00:14] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  143. # [00:14] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  144. # [00:14] * Joins: Gijs (gijs@moz-43FD6530.range86-164.btcentralplus.com)
  145. # [00:14] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  146. # [00:14] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  147. # [00:14] * Quits: flo-retina (Instantbir@moz-25D49B0E.ip-37-59-48.eu) (Ping timeout)
  148. # [00:14] <dholbert> ehsan_, object-fit gives you another layer of control; basically, given an <img> with a particular size, and an underlying image file with a particular aspect-ratio, "object-fit" tells you how to determine the actual rect that the image's pixels are mapped to
  149. # [00:15] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  150. # [00:15] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  151. # [00:15] <dholbert> ehsan_, *then*, that's the rect that we give to the SVG to do what it wants with (including using preserveAspectRatio & viewBox)
  152. # [00:15] * hwine-coffee is now known as hwine
  153. # [00:15] * Quits: zimio (zimio@moz-F573EF3.mullvad.net) (Ping timeout)
  154. # [00:15] * Joins: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  155. # [00:15] <ehsan_> dholbert: makes sense
  156. # [00:15] <dholbert> ehsan_, in effect, this sort of means that "object-fit" / "object-position" will override preserveAspectRatio
  157. # [00:15] * Quits: Pike (chatzilla@moz-D87B7311.pool.mediaways.net) (Ping timeout)
  158. # [00:15] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  159. # [00:15] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  160. # [00:15] <ehsan_> right
  161. # [00:15] * Quits: larsg (larsg@moz-7A421C83.customers.d1-online.com) (Quit: Ex-Chat)
  162. # [00:15] * Joins: flo-retina (Instantbir@moz-25D49B0E.ip-37-59-48.eu)
  163. # [00:16] * Joins: Pike (chatzilla@moz-D87B7311.pool.mediaways.net)
  164. # [00:16] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  165. # [00:16] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  166. # [00:16] <Gijs> How can I add the same kinds of fatal warnings that tinderbox builds with to my local mozconfig?
  167. # [00:16] * Gijs has been caught out a second time by not having them and is starting to get annoyed
  168. # [00:16] <dholbert> Gijs, ac_add_options --enable-warnings-as-errors
  169. # [00:16] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  170. # [00:16] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  171. # [00:16] <Gijs> dholbert: thanks!
  172. # [00:16] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  173. # [00:17] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  174. # [00:17] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  175. # [00:17] * Quits: gsvelto (gsvelto@moz-2311DF2B.clienti.tiscali.it) (Quit: Leaving)
  176. # [00:17] <dholbert> Gijs, np
  177. # [00:17] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  178. # [00:17] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  179. # [00:18] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  180. # [00:18] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  181. # [00:18] * Quits: mconley (mconley@FCCEA34F.7672369.D8E68FF6.IP) (Input/output error)
  182. # [00:18] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  183. # [00:18] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  184. # [00:18] * Joins: kip (kip@9D222422.D1155E2C.CFC2A289.IP)
  185. # [00:19] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  186. # [00:19] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  187. # [00:19] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  188. # [00:19] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  189. # [00:20] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  190. # [00:20] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  191. # [00:20] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  192. # [00:20] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  193. # [00:20] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  194. # [00:20] * ChanServ sets mode: +o roc
  195. # [00:21] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  196. # [00:21] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  197. # [00:21] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  198. # [00:21] * Joins: edwin (me@moz-DB4A9C19.scl3.mozilla.com)
  199. # [00:22] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  200. # [00:22] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  201. # [00:22] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  202. # [00:22] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  203. # [00:23] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  204. # [00:23] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  205. # [00:23] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  206. # [00:23] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  207. # [00:24] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  208. # [00:24] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  209. # [00:24] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  210. # [00:24] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  211. # [00:24] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  212. # [00:25] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  213. # [00:25] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  214. # [00:25] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  215. # [00:25] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  216. # [00:26] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  217. # [00:26] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  218. # [00:26] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  219. # [00:26] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  220. # [00:27] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  221. # [00:27] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  222. # [00:27] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  223. # [00:27] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  224. # [00:28] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  225. # [00:28] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  226. # [00:28] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  227. # [00:28] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  228. # [00:28] <lgarner> fabrice: Ping.
  229. # [00:29] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  230. # [00:29] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  231. # [00:29] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  232. # [00:29] <fabrice> lgarner: pong
  233. # [00:30] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  234. # [00:30] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  235. # [00:30] * nsm|away is now known as nsm
  236. # [00:30] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  237. # [00:30] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  238. # [00:30] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  239. # [00:31] <lgarner> fabrice: Quick question. I am overwriting mozSetMessageHandler in chrome with a local chrome function. Does content get access to that new function too (It doesn't currently).
  240. # [00:31] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  241. # [00:31] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  242. # [00:31] * Quits: jimm (jmathies@moz-DF439B90.pn.at.cox.net) (Quit: )
  243. # [00:31] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  244. # [00:31] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  245. # [00:32] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  246. # [00:32] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  247. # [00:32] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  248. # [00:32] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  249. # [00:32] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  250. # [00:32] <fabrice> lgarner: no. The real one is http://mxr.mozilla.org/mozilla-central/source/dom/base/Navigator.cpp#1798
  251. # [00:33] <fabrice> which you can't override
  252. # [00:33] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  253. # [00:33] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  254. # [00:33] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  255. # [00:33] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  256. # [00:34] * Joins: zimio (zimio@moz-D52819E1.mullvad.net)
  257. # [00:34] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  258. # [00:34] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  259. # [00:34] * Quits: mastizada (Thunderbir@87EDA858.AA8066EC.968A78B9.IP) (Ping timeout)
  260. # [00:34] * lmandel_afk is now known as lmandel
  261. # [00:34] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  262. # [00:34] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  263. # [00:35] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  264. # [00:35] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  265. # [00:35] * Quits: sir_none (Thunderbir@moz-91309803.goll.stat.salzburg-online.at) (Quit: sir_none)
  266. # [00:35] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  267. # [00:35] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  268. # [00:36] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  269. # [00:36] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  270. # [00:36] <lgarner> fabrice: It does partially (I can intercept messages, and the function does call), but content can't set anything after I do that. So, I'm hoping there's still a way :)
  271. # [00:36] <fabrice> lgarner: first, why are you doing that?
  272. # [00:36] * justindarc|brb is now known as justindarc
  273. # [00:36] * Quits: serge (Thunderbir@moz-79F95649.dsl.teksavvy.com) (Ping timeout)
  274. # [00:37] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  275. # [00:37] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  276. # [00:37] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  277. # [00:37] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  278. # [00:37] * whimboo is now known as whimboo|afk
  279. # [00:38] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  280. # [00:38] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  281. # [00:38] <lgarner> fabrice: If you remember, our "HCIEventTransactions" are using system messages, but I was hoping to non-invasively replace the setMessageHander so I can forward it to an event (which actually works, minus the fact it breaks content's ability to set message handlers).
  282. # [00:38] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  283. # [00:38] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  284. # [00:38] * Joins: lizzard (ehenry@72702050.9509AF86.189F3E15.IP)
  285. # [00:38] * Quits: ehugg (ehugg@moz-F46F489D.hsd1.wa.comcast.net) (Quit: ehugg)
  286. # [00:38] * Quits: LeandroL (leandro@AAA9E8C0.BC5C41C1.218432E1.IP) (Quit: Leaving)
  287. # [00:39] <lgarner> fabrice: NFC transaction handling.
  288. # [00:39] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  289. # [00:39] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  290. # [00:39] <fabrice> how did you override?
  291. # [00:39] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  292. # [00:39] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  293. # [00:39] <lgarner> fabrice: Somewhat naievely directly in chrome/nsNfc.js. Let me use pastebin...
  294. # [00:39] <dmajor> does the tree still need to be closed? I don't see a lot of pending on treeherder
  295. # [00:40] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  296. # [00:40] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  297. # [00:40] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  298. # [00:40] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  299. # [00:40] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  300. # [00:40] * Quits: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch) (Quit: Leaving.)
  301. # [00:40] <lgarner> fabrice: http://pastebin.com/aCdCJfrQ
  302. # [00:40] * Quits: coop|afk (coop@moz-BCE5D25B.dsl.teksavvy.com) (Ping timeout)
  303. # [00:41] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  304. # [00:41] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  305. # [00:41] * wlach is now known as wlach|afk
  306. # [00:41] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  307. # [00:41] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  308. # [00:41] * esawin is now known as esawin|pto
  309. # [00:42] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  310. # [00:42] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  311. # [00:42] <dmajor> KWierso|sheriffduty: ^
  312. # [00:42] * Joins: jviereck (Adium@moz-32F62A57.dclient.hispeed.ch)
  313. # [00:42] <KWierso|sheriffduty> dmajor: working onit
  314. # [00:42] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  315. # [00:42] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  316. # [00:42] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  317. # [00:42] * Joins: coop (coop@381EF806.940694D2.B2F11ABB.IP)
  318. # [00:43] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  319. # [00:43] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  320. # [00:43] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  321. # [00:43] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  322. # [00:44] * nsm is now known as nsm|away
  323. # [00:44] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  324. # [00:44] * Matti is now known as Matti_away
  325. # [00:44] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  326. # [00:44] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  327. # [00:44] * Quits: gandalf_ (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  328. # [00:45] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  329. # [00:45] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  330. # [00:45] <fabrice> lgarner: and then what happens when you call mozSetMessageHandler() ? do we throw or something?
  331. # [00:45] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  332. # [00:45] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  333. # [00:45] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  334. # [00:46] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  335. # [00:46] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  336. # [00:46] <lgarner> fabrice: Pretty much nothing, which I haven't figured out yet.
  337. # [00:46] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  338. # [00:46] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  339. # [00:46] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  340. # [00:46] * Joins: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP)
  341. # [00:47] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  342. # [00:47] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  343. # [00:47] <fabrice> can you check if you enter the navigator.cpp one?
  344. # [00:47] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  345. # [00:47] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  346. # [00:48] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  347. # [00:48] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  348. # [00:48] * Joins: davidb (davidb@3379008A.E34415CA.B26385CC.IP)
  349. # [00:48] <KWierso|sheriffduty> dmajor: almost ready to reopen
  350. # [00:48] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  351. # [00:48] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  352. # [00:48] <dmajor> KWierso|sheriffduty: ok thanks. mostly just curious, I don't mean to rush you
  353. # [00:48] <lgarner> fabrice: The navigator.cpp one? What do you mean?
  354. # [00:48] * Joins: rhelmer (rhelmer@moz-DB4A9C19.scl3.mozilla.com)
  355. # [00:49] <fabrice> lgarner: http://mxr.mozilla.org/mozilla-central/source/dom/base/Navigator.cpp#1798
  356. # [00:49] * Joins: mconley (mconley@moz-FBB7D102.cable.teksavvy.com)
  357. # [00:49] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  358. # [00:49] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  359. # [00:49] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  360. # [00:49] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  361. # [00:50] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  362. # [00:50] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  363. # [00:50] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  364. # [00:50] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  365. # [00:50] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  366. # [00:50] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  367. # [00:50] * Joins: larsg (larsg@moz-A7D3CA3A.dip0.t-ipconnect.de)
  368. # [00:51] <lgarner> fabrice: well, I'm calling a reference to the original one inside chrome/nsNfc.js, unless this._navigator._setMessageHandler is available to content...
  369. # [00:51] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  370. # [00:51] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  371. # [00:51] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  372. # [00:51] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  373. # [00:52] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  374. # [00:52] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  375. # [00:52] <Gijs> dholbert: does that work on OS X? :)
  376. # [00:52] * jlund is now known as jlund|brb
  377. # [00:52] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  378. # [00:52] * jlund|brb is now known as jlund|away
  379. # [00:52] <dholbert> Gijs, yup
  380. # [00:52] <dholbert> Gijs, of course, different compilers have (slightly) different warnings
  381. # [00:52] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  382. # [00:52] <dholbert> Gijs, so e.g. it won't help you if your warning is windows-only
  383. # [00:53] <dholbert> (or in e.g. only-compiled-on-B2G code, and your local build isn't b2g)
  384. # [00:53] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  385. # [00:53] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  386. # [00:53] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  387. # [00:53] <Gijs> dholbert: hm - asking because my earlier push got errors on linux and Windows but not on os x...
  388. # [00:53] <Gijs> ah, right
  389. # [00:53] * Joins: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  390. # [00:53] <Gijs> ok, so I guess I will just try-push this :)
  391. # [00:53] * Joins: mt_ (mt@moz-62518563.mtv2.mozilla.com)
  392. # [00:53] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  393. # [00:53] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  394. # [00:53] <fabrice> lgarner: no it's not
  395. # [00:54] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  396. # [00:54] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  397. # [00:54] * justindarc is now known as justindarc|afk
  398. # [00:54] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  399. # [00:54] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  400. # [00:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/73c91886c474 - B2G Bumper Bot - Bumping gaia.json for 7 gaia revision(s) a=gaia-bump
  401. # [00:54] <fabrice> lgarner: there may be some wrapper stuff involved... you should ask bholley
  402. # [00:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1cad5aa32888 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  403. # [00:55] <dholbert> Gijs, that's slightly odd, gcc & clang are more similar than gcc & MSVC. But yeah, sounds like you might need to just use try. (Worth keeping that line in your mozconfig, though! :))
  404. # [00:55] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  405. # [00:55] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  406. # [00:55] <Gijs> dholbert: yup! :)
  407. # [00:55] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  408. # [00:55] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  409. # [00:55] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  410. # [00:55] * Joins: bjacob (bjacob@moz-CC07A754.cable.teksavvy.com)
  411. # [00:55] <lgarner> fabrice: Thanks! I'll check with bholley. cloneInto seems to be objects only...
  412. # [00:55] <dholbert> Gijs, mind sending me the link to the failing try push? I'm curious what's making Mac happy
  413. # [00:56] <Gijs> dholbert: not a try push, hence my being so miffed :)
  414. # [00:56] <Gijs> https://tbpl.mozilla.org/?tree=Fx-Team&rev=3cc898b3ef5d
  415. # [00:56] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  416. # [00:56] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  417. # [00:56] <fabrice> lgarner: what do you mean?
  418. # [00:56] <Gijs> (backed out pretty quickly, but still, waste of time, stuff, oranges, yada yada)
  419. # [00:56] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/c8ca7d751f8d - Jean-Yves Avenard - Bug 1070703: Enable MP4 decoding in Mac OS 10.6 and 10.7. r=rillian, a=lmandel
  420. # [00:56] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/3a4cf022fefa - Jean-Yves Avenard - Bug 1062596: Bump thread stack size on OS X to avoid crashes. r=kinetik, a=lmandel
  421. # [00:56] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  422. # [00:56] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  423. # [00:56] <dholbert> Gijs, ah. That's green on windows! it's only busted on GCC builds
  424. # [00:57] <Gijs> dholbert: right, but also on mac ;(
  425. # [00:57] <dholbert> Gijs, (i.e. it's busted on linux & Android)
  426. # [00:57] <Gijs> (which is what I wrote it on)
  427. # [00:57] <dholbert> Gijs, yup, gotcha
  428. # [00:57] <Gijs> right
  429. # [00:57] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  430. # [00:57] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  431. # [00:57] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  432. # [00:57] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  433. # [00:57] <dholbert> Gijs, cool. anyway, that clears up my "why are GCC and MSVC being more similar than GCC and clang" confusion.
  434. # [00:57] <lgarner> fabrice: Actually, let me try it on the function.
  435. # [00:57] <Gijs> ah! right, makes sense :)
  436. # [00:58] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  437. # [00:58] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  438. # [00:58] * Quits: Boriss (Boriss@moz-BA625DEF.v250d.public.monkeybrains.net) (Quit: Boriss)
  439. # [00:58] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  440. # [00:58] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  441. # [00:58] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  442. # [00:59] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  443. # [00:59] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  444. # [00:59] * Quits: davidb (davidb@3379008A.E34415CA.B26385CC.IP) (Quit: peace out)
  445. # [00:59] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  446. # [00:59] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  447. # [01:00] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  448. # [01:00] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  449. # [01:00] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  450. # [01:00] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  451. # [01:01] * Quits: jviereck (Adium@moz-32F62A57.dclient.hispeed.ch) (Quit: Leaving.)
  452. # [01:01] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  453. # [01:01] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  454. # [01:02] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  455. # [01:02] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  456. # [01:02] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  457. # [01:02] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  458. # [01:03] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  459. # [01:03] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  460. # [01:03] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  461. # [01:03] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  462. # [01:04] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Quit: rkent)
  463. # [01:04] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  464. # [01:04] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  465. # [01:04] <lgarner> fabrice: Huh. That's a new message: [JavaScript Error: "Error: Permission denied to pass a Function via structured clone"
  466. # [01:04] * Quits: mhenretty (sid11899@moz-5F4AA75A.irccloud.com) (Ping timeout)
  467. # [01:04] * Quits: evilpie (sid7877@moz-E77DEB21.irccloud.com) (Ping timeout)
  468. # [01:04] * Quits: camd (sid24185@moz-31ABA2C0.irccloud.com) (Ping timeout)
  469. # [01:04] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  470. # [01:04] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  471. # [01:04] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=f771fd927304 - 25 changesets
  472. # [01:04] <fabrice> lgarner: yeah, you can't do that. Are you trying to CloneInto() a function?
  473. # [01:04] * Quits: jryans (sid12941@moz-5F4AA75A.irccloud.com) (Ping timeout)
  474. # [01:04] * Quits: dmarcos (sid15240@moz-31ABA2C0.irccloud.com) (Ping timeout)
  475. # [01:04] * Quits: eseidel (sid5595@moz-5F4AA75A.irccloud.com) (Ping timeout)
  476. # [01:04] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Ping timeout)
  477. # [01:04] * Quits: gwagner (sid25406@moz-E77DEB21.irccloud.com) (Ping timeout)
  478. # [01:04] * Joins: camd (sid24185@moz-31ABA2C0.irccloud.com)
  479. # [01:04] * Quits: dcamp (sid6663@moz-5F4AA75A.irccloud.com) (Ping timeout)
  480. # [01:04] * Quits: brendan (brendaneic@6A24F57D.51C7F032.FA49AE52.IP) (Quit: brendan)
  481. # [01:05] * Quits: wycats (sid79@moz-5F4AA75A.irccloud.com) (Ping timeout)
  482. # [01:05] * Quits: sid0 (sid2934@moz-5F4AA75A.irccloud.com) (Ping timeout)
  483. # [01:05] * Quits: fhd (sid2508@moz-31ABA2C0.irccloud.com) (Ping timeout)
  484. # [01:05] * Quits: mattur (sid16049@moz-A42E5B7B.irccloud.com) (Ping timeout)
  485. # [01:05] * Quits: krit (sid15081@moz-E77DEB21.irccloud.com) (Ping timeout)
  486. # [01:05] * Quits: milan (milan@moz-69F4F0E.dsl.bell.ca) (Input/output error)
  487. # [01:05] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  488. # [01:05] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  489. # [01:05] <lgarner> fabrice: Yeah. Didn't think i'd work, but know it's clear :)
  490. # [01:05] * Joins: Boriss (Boriss@moz-22D61EA0.lightspeed.sntcca.sbcglobal.net)
  491. # [01:05] * Quits: mfinkle (sid7114@moz-5F4AA75A.irccloud.com) (Ping timeout)
  492. # [01:05] * Joins: wycats (sid79@moz-5F4AA75A.irccloud.com)
  493. # [01:05] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  494. # [01:05] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  495. # [01:05] * Quits: espadrine (espadrine@moz-6ECBC304.w92-128.abo.wanadoo.fr) (Ping timeout)
  496. # [01:05] <@smaug> dholbert: have you perhaps looked at interruptible reflow lately? (and why it doesn't kick in too well when loading single page html spec)
  497. # [01:05] * Joins: eseidel (sid5595@moz-5F4AA75A.irccloud.com)
  498. # [01:06] * Joins: jryans (sid12941@moz-5F4AA75A.irccloud.com)
  499. # [01:06] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  500. # [01:06] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  501. # [01:06] * Joins: mhenretty (sid11899@moz-5F4AA75A.irccloud.com)
  502. # [01:06] * Joins: sid0 (sid2934@moz-5F4AA75A.irccloud.com)
  503. # [01:06] * Joins: dcamp (sid6663@moz-5F4AA75A.irccloud.com)
  504. # [01:06] <dholbert> smaug, have not. I don't entirely know what triggers it to kick in / not-kick-in
  505. # [01:06] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  506. # [01:06] * Joins: evilpie (sid7877@moz-E77DEB21.irccloud.com)
  507. # [01:06] * Joins: mfinkle (sid7114@moz-5F4AA75A.irccloud.com)
  508. # [01:06] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  509. # [01:06] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  510. # [01:06] * Joins: milan (milan@moz-69F4F0E.dsl.bell.ca)
  511. # [01:07] <dholbert> smaug, b z would probably know, if you want to ping him
  512. # [01:07] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  513. # [01:07] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  514. # [01:07] * Joins: fhd (sid2508@moz-31ABA2C0.irccloud.com)
  515. # [01:07] * Quits: ehsan_ (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  516. # [01:07] <@smaug> dholbert: sure. I was looking for someone dealing with layout issues ;)
  517. # [01:07] * Joins: njn_ (njn@moz-F79E40B5.dyn.iinet.net.au)
  518. # [01:07] <@smaug> b z is busy enough with other stuff, I assume
  519. # [01:08] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  520. # [01:08] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  521. # [01:08] * Quits: njn (chatzilla@moz-F79E40B5.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 33.0/20140923222114])
  522. # [01:08] * njn_ is now known as njn
  523. # [01:08] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  524. # [01:08] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  525. # [01:08] * Joins: krit (sid15081@moz-E77DEB21.irccloud.com)
  526. # [01:08] * Joins: gwagner (sid25406@moz-E77DEB21.irccloud.com)
  527. # [01:09] * Joins: mattur (sid16049@moz-A42E5B7B.irccloud.com)
  528. # [01:09] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  529. # [01:09] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  530. # [01:09] * Joins: dmarcos (sid15240@moz-31ABA2C0.irccloud.com)
  531. # [01:09] * Joins: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  532. # [01:09] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  533. # [01:09] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  534. # [01:10] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  535. # [01:10] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  536. # [01:10] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  537. # [01:10] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  538. # [01:10] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  539. # [01:10] * Quits: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP) (Ping timeout)
  540. # [01:10] * Joins: jviereck (Adium@moz-32F62A57.dclient.hispeed.ch)
  541. # [01:11] * Quits: jviereck (Adium@moz-32F62A57.dclient.hispeed.ch) (Quit: Leaving.)
  542. # [01:11] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  543. # [01:11] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  544. # [01:11] * Quits: kentuckyfriedtakahe (ajones@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Ex-Chat)
  545. # [01:11] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  546. # [01:11] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  547. # [01:12] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  548. # [01:12] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  549. # [01:12] * Joins: WaltS48 (Thunderbir@moz-22305729.pitbpa.east.verizon.net)
  550. # [01:12] * Quits: Boriss (Boriss@moz-22D61EA0.lightspeed.sntcca.sbcglobal.net) (Quit: Boriss)
  551. # [01:12] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  552. # [01:12] * Quits: laura (laura@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  553. # [01:12] <@smaug> whaat, opening findbar when html spec is open, takes tons of time, mostly under MediaFeaturesValuesChanged
  554. # [01:12] <@smaug> rebuilding all the style data...
  555. # [01:13] * Quits: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net) (Client exited)
  556. # [01:13] <dholbert> smaug, from interrupting with gdb at an arbitrary point during page load, I'm hitting frame creation (not reflow)
  557. # [01:13] * Joins: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net)
  558. # [01:13] <@smaug> profiler tends to say reflow
  559. # [01:13] * Joins: laura (laura@moz-DB4A9C19.scl3.mozilla.com)
  560. # [01:13] <@smaug> in general reflow takes up tp 50% of page load
  561. # [01:13] <@smaug> s/tp/to/
  562. # [01:14] <dholbert> (and now I'm in FlushPendingMediaFeatureValuesChanged, like you mentioned)
  563. # [01:15] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  564. # [01:15] * Joins: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net)
  565. # [01:15] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  566. # [01:15] * Quits: Waldo (waldo@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 31.0/20140725111610])
  567. # [01:15] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  568. # [01:16] * Quits: jduell (jduell@moz-D7F78D4E.hsd1.wa.comcast.net) (Quit: Leaving)
  569. # [01:16] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  570. # [01:16] * Joins: jduell (jduell@moz-D7F78D4E.hsd1.wa.comcast.net)
  571. # [01:17] <dholbert> smaug, hmm, I just got a call to Flush_Layout (non-interruptible), but it looks like it's because I clicked the page, and we have to flush layout to handle mouse events :)
  572. # [01:18] <@smaug> yeah, those are annoying
  573. # [01:18] <dholbert> s/call to Flush_Layout/call to FlushPendingNotifications with Flush_Layout/
  574. # [01:18] <@smaug> but we can't really remove that flush
  575. # [01:18] * jduell is now known as jduell_bbl
  576. # [01:18] <dholbert> yeah
  577. # [01:19] * Quits: nrc (nrc@34E8ECDF.DC2C3734.616A18A6.IP) (Ping timeout)
  578. # [01:19] * Joins: nrc (nrc@34E8ECDF.DC2C3734.616A18A6.IP)
  579. # [01:20] * mconley is now known as mconley|gym
  580. # [01:21] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  581. # [01:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/55116f58758f - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  582. # [01:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b872c47f6b81 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  583. # [01:21] * sheppy is now known as sheppy-offline
  584. # [01:21] <Pike> rstrong: seems that mac packaging broke l10n repacks? make ident tries to find application.ini. CC coop
  585. # [01:22] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  586. # [01:22] * Joins: LeandroL (leandro@AAA9E8C0.BC5C41C1.218432E1.IP)
  587. # [01:23] * Quits: milan (milan@moz-69F4F0E.dsl.bell.ca) (Input/output error)
  588. # [01:23] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/77aa40674089 - Michael Wu - Bug 1072645 - Use stateless event filtering in GeckoTouchDispatcher, r=kats, a=lmandel
  589. # [01:23] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  590. # [01:24] * Joins: serge (Thunderbir@moz-79F95649.dsl.teksavvy.com)
  591. # [01:24] * Quits: jdm (jdm@CAB30FBD.8F96AEA7.2D179A7D.IP) (Quit: )
  592. # [01:26] * Joins: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP)
  593. # [01:26] <rstrong> Pike: thanks for the heads up
  594. # [01:28] <Pike> can you file a bug on that and CC me ? example build log is at http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2014-10-01-03-02-05-mozilla-central-l10n/mozilla-central-macosx64-l10n-nightly-de-bm86-build1-build3565.txt.gz. I'm already in bed and trying to get that laptop closed
  595. # [01:28] * Quits: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.14/20140621130907])
  596. # [01:28] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=af6c928893c0 - 65 changesets
  597. # [01:28] * Quits: gustavold (gustavold@A2994CCC.ED977FAE.8D3F079C.IP) (Ping timeout)
  598. # [01:29] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  599. # [01:29] * Quits: bajaj1 (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  600. # [01:31] <rstrong> Pike: I am extremely busy... could you please file it?
  601. # [01:31] <rstrong> Pike: I can likely get to it later tonight
  602. # [01:31] * nsm|away is now known as nsm
  603. # [01:32] * Joins: nfroyd (nfroyd@moz-DB4A9C19.scl3.mozilla.com)
  604. # [01:32] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Input/output error)
  605. # [01:32] * Quits: smontagu (chatzilla@moz-5E837974.red.bezeqint.net) (Ping timeout)
  606. # [01:33] * kgrandon is now known as kgrandon|backoutbot
  607. # [01:33] * Quits: Ms2ger (Ms2ger@9E7F1259.CA89C307.187A1082.IP) (Ping timeout)
  608. # [01:33] <Pike> filed bug 1076370, didn't bother much if it's misfiled, but tried to leave the essentials in there
  609. # [01:34] * heycam|away is now known as heycam
  610. # [01:34] <Pike> not sure if there's more that releng hooks in to beyond that makefile target which might be later in the nightly automation
  611. # [01:34] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  612. # [01:36] * Joins: Boriss (Boriss@moz-BA625DEF.v250d.public.monkeybrains.net)
  613. # [01:37] * juanb is now known as juanb|afk
  614. # [01:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f765839e8e60 - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  615. # [01:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7c367cf77045 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  616. # [01:39] * Quits: juanb|afk (jbecerra@moz-62518563.mtv2.mozilla.com) (Quit: juanb|afk)
  617. # [01:39] * Quits: loadbang (simon@moz-579F80A2.range86-150.btcentralplus.com) (Quit: loadbang)
  618. # [01:39] <rillian> RyanVM|mfbt: sorry, I always forget to set the flags when pushing to release branches.
  619. # [01:40] <RyanVM|mfbt> np, it's why I check ;)
  620. # [01:41] * ggp is now known as ggp|away
  621. # [01:43] * Quits: drno (nohlmeier@moz-62518563.mtv2.mozilla.com) (Quit: drno)
  622. # [01:44] * Quits: mak (uid24946@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  623. # [01:45] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  624. # [01:45] * Joins: brendan (brendaneic@6A24F57D.51C7F032.FA49AE52.IP)
  625. # [01:47] * Joins: jrmuizel_ (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  626. # [01:47] * Quits: Pike (chatzilla@moz-D87B7311.pool.mediaways.net) (Quit: ChatZilla 0.9.90.1 [Firefox 32.0.3/20140923175406])
  627. # [01:47] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  628. # [01:49] * Joins: PiresFelix (Leonardo@moz-90356C97.dynamic.adsl.gvt.net.br)
  629. # [01:51] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  630. # [01:51] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  631. # [01:52] * Quits: system64 (uid17738@moz-A42E5B7B.irccloud.com) (Quit: Connection closed for inactivity)
  632. # [01:52] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  633. # [01:52] * Quits: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP) (Quit: Leaving)
  634. # [01:53] * spohl|afk is now known as spohl
  635. # [01:53] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  636. # [01:53] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  637. # [01:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8e62de64e7fd - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  638. # [01:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f3ddcc234325 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  639. # [01:53] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  640. # [01:54] * justindarc|afk is now known as justindarc
  641. # [01:54] * Quits: justindarc (justindarc@983B2741.D80FB52E.B58D01CE.IP) (Quit: )
  642. # [01:55] * nfroyd is now known as froydnj
  643. # [01:55] * Joins: Jesse_ (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  644. # [01:55] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Connection reset by peer)
  645. # [01:56] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  646. # [01:56] * Quits: Gijs (gijs@moz-43FD6530.range86-164.btcentralplus.com) (Quit: sleep)
  647. # [01:56] * Quits: jrmuizel_ (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  648. # [01:57] * kgrandon|backoutbot is now known as kgrandon
  649. # [01:57] * Quits: Jesse_ (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  650. # [01:57] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  651. # [01:58] * Joins: bajaj (bajaj_afk@moz-A7D0AB95.lightspeed.sntcca.sbcglobal.net)
  652. # [01:58] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  653. # [01:59] * Joins: nattokirai (nattokirai@moz-C286AD9A.bitcat.net)
  654. # [02:00] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Quit: amoghbl1)
  655. # [02:00] * Quits: mwargers (mwargers@moz-AF369B35.adsl.online.nl) (Client exited)
  656. # [02:00] * Quits: twi (Adium@moz-11C903EE.cust.vodafonedsl.it) (Quit: Leaving.)
  657. # [02:00] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  658. # [02:00] * Joins: mwargers (mwargers@moz-AF369B35.adsl.online.nl)
  659. # [02:02] * khuey is now known as khuey|away
  660. # [02:02] * Quits: mwargers (mwargers@moz-AF369B35.adsl.online.nl) (Ping timeout)
  661. # [02:03] * Quits: zimio (zimio@moz-D52819E1.mullvad.net) (Ping timeout)
  662. # [02:03] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  663. # [02:04] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  664. # [02:04] * Quits: surkov (surkov@moz-4AE5762E.cpe.teksavvy.com) (Quit: surkov)
  665. # [02:04] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  666. # [02:04] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=2399d1ae89e9 - 27 changesets
  667. # [02:05] * Quits: billm (billm@moz-24157589.mtv2.mozilla.com) (Ping timeout)
  668. # [02:05] * Parts: Snuffleupagus (chatzilla@moz-50E31F78.bredband.comhem.se)
  669. # [02:06] * Quits: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP) (Ping timeout)
  670. # [02:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=2399d1ae89e9 - 54 changesets
  671. # [02:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=f4ab8e8b595b - 93 changesets
  672. # [02:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=51c81f43b2de - 95 changesets
  673. # [02:14] * Joins: liuche (liuche@moz-DB4A9C19.scl3.mozilla.com)
  674. # [02:15] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  675. # [02:15] * Quits: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com) (Quit: computer sleep)
  676. # [02:15] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  677. # [02:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0155f960161f - Jeff Gilbert - Bug 1048108 - Actually iterate through configs. - r=kamidphish
  678. # [02:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/45472bfa3f16 - Jeff Gilbert - Bug 1048108 - Don't require alpha on ANGLE. - r=kamidphish
  679. # [02:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e17f9996e092 - Jeff Gilbert - Bug 1048108 - Workaround ANGLE not having no-alpha surfaces. - r=kamidphish
  680. # [02:17] * Joins: wolfiR_ (wolfiR@moz-F7D46008.dip0.t-ipconnect.de)
  681. # [02:17] * Quits: tn (tim@moz-E7CE1D28.wp.shawcable.net) (Ping timeout)
  682. # [02:17] * hwine is now known as hwine-commuting
  683. # [02:17] * Quits: wolfiR (wolfiR@moz-A825C824.dip0.t-ipconnect.de) (Ping timeout)
  684. # [02:18] * Quits: bmoss (bmoss@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  685. # [02:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3103826177af - Byron Campen [:bwc] - Bug 1072044: Fire ICE signals on main. r=mt
  686. # [02:19] * Joins: jrmuizel (jrmuizel@moz-3B68463C.cpe.net.cable.rogers.com)
  687. # [02:19] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  688. # [02:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0a2548fb4c6a - Mike Hommey - Bug 1062221 - Add a TypedList type and refactor mozbuild.util lists. r=gps
  689. # [02:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/23eb4e460b71 - Mike Hommey - Bug 1062221 - Replace add_tier_dir with DIRS. r=gps
  690. # [02:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/601b5bcf7af2 - Mike Hommey - Bug 1062221 - Change how DIRS and TEST_DIRS are handled. r=gps
  691. # [02:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4ac3369095af - Mike Hommey - Bug 1063414 - Add infrastructure to follow what the current file being processed is in a Context. r=gps
  692. # [02:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8ed602393f8d - Mike Hommey - Bug 1063414 - Move sandbox execution stack to context.Context. r=gps
  693. # [02:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6986ab0f163e - Mike Hommey - Bug 1063414 - Make DIRS relative to the file they were added from. r=gps
  694. # [02:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/729b1324a3ce - Mike Hommey - Bug 1063432 - Do type coercion on sandbox function arguments. r=gps
  695. # [02:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8e70d430c86a - Mike Hommey - Bug 1063437 - Use SourcePath smart type for sandbox includes. r=gps
  696. # [02:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3f9e0be6d08f - Mike Hommey - Bug 1063437 - Remove MozbuildSandbox.normalize_path. r=gps
  697. # [02:20] * terrence is now known as terrence-afk
  698. # [02:21] * Quits: mt_ (mt@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  699. # [02:21] <jgilbert> burn baby burn
  700. # [02:22] * nthomas is now known as nthomas|away
  701. # [02:22] <seth> ditto
  702. # [02:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/320de51add94 - Seth Fowler - Bug 1057904 (Part 1) - Use RawAccessRef in FrameBlender and related classes and clean up. r=tn
  703. # [02:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/60d6c5549706 - Seth Fowler - Bug 1057904 (Part 2) - Make imgFrame::LockImageData and UnlockImageData private. r=tn
  704. # [02:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f29f685b1f01 - Seth Fowler - Bug 1060869 (Part 1) - Add lifetime control to SurfaceCache. r=dholbert
  705. # [02:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/60c79ffef24f - Seth Fowler - Bug 1060869 (Part 2) - Store the first frame of a RasterImage in the SurfaceCache. r=tn
  706. # [02:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a3e9214bfcce - Seth Fowler - Bug 923302 - Add explicit memory reporting for SurfaceCache. r=njn
  707. # [02:24] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  708. # [02:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0740fc10483c - Michael Comella - Bug 1072469: Change new tablet toolbar height to 60dp and menu buttons to 56x60dp. r=lucasr
  709. # [02:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fce56d505b2e - Karl Tomlinson - b=1012609 improve PeriodicWave phase-wrapping logic r=rillian
  710. # [02:27] <seth> oh jeez
  711. # [02:27] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/77311a86c967 - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  712. # [02:27] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/7772d658bb91 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  713. # [02:27] <seth> who's on sherriff duty right now?
  714. # [02:27] * KWierso|sheriffduty is now known as KWierso
  715. # [02:27] <seth> KWierso: caught you!
  716. # [02:27] * ewong|sleep is now known as ewong
  717. # [02:27] <KWierso> seth: I was until right then :P
  718. # [02:28] <KWierso> what's up?
  719. # [02:28] * Joins: mmcdonough (Martin@890E5CBB.49A896E6.DF3AB84E.IP)
  720. # [02:28] <seth> KWierso: i just realizd that a "trivial fix" i made to one of the patches i just pushed completely busted it
  721. # [02:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fd256e9a9dbc - Eric Rahm - Bug 1075966 - ccapp_task.h lacks an include guard. r=bwc
  722. # [02:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d3cf7a1879ec - Eric Rahm - Bug 1075984 - SpdyZlibReporter.h is missing an include guard. r=froydnj
  723. # [02:28] * Parts: mmcdonough (Martin@890E5CBB.49A896E6.DF3AB84E.IP) (Still 20/20)
  724. # [02:28] <seth> KWierso: just a warning that that push is going to be all orange
  725. # [02:28] * Joins: adesst (adesanto@691D05D8.C67CCEE5.41E10BD5.IP)
  726. # [02:29] * seth starts preparing a backout
  727. # [02:29] * Quits: jrmuizel (jrmuizel@moz-3B68463C.cpe.net.cable.rogers.com) (Client exited)
  728. # [02:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/6cdd768e634f - Mark Hammond - Bug 1075341 - tests disabled in Linux due to bug 1073339 are now also disabled for e10s. r=unfocused
  729. # [02:30] * Quits: kip (kip@9D222422.D1155E2C.CFC2A289.IP) (Client exited)
  730. # [02:31] <jesup> KWierso: I have some bugs that need to get in and on green inbound I'll merge them to Beta for tomorrow's beta. Shall I push now?
  731. # [02:31] * Quits: bwc (Adium@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  732. # [02:31] <KWierso> jesup: might want to wait until seth pushes his backout or you'll be pushing onto bustage
  733. # [02:31] <jesup> right, that was why I asked
  734. # [02:32] * Quits: garvank (Garvan@D6C0E482.3639A644.97F07BE5.IP) (Quit: )
  735. # [02:32] * Joins: JosiahOne (Instantbir@moz-B458D21B.hfc.comcastbusiness.net)
  736. # [02:33] * miketaylr is now known as zz_miketaylr
  737. # [02:33] <KWierso> seth: okay, go ahead and push your backout :)
  738. # [02:34] <seth> KWierso: will in just a minute
  739. # [02:34] <erahm> OSX on tpbl seems to have gone out to lunch
  740. # [02:34] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  741. # [02:34] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Quit: aklotz)
  742. # [02:34] * Joins: sfink (chatzilla@moz-BC9D71A3.lightspeed.sntcca.sbcglobal.net)
  743. # [02:34] <KWierso> erahm: eh?
  744. # [02:35] <erahm> KWierso: 45 pending builds
  745. # [02:35] <KWierso> mmm
  746. # [02:36] <seth> KWierso: jesup: just pushed the backout. you should be good to go
  747. # [02:36] * Quits: lizzard (ehenry@72702050.9509AF86.189F3E15.IP) (Quit: lizzard)
  748. # [02:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e388678a9211 - Seth Fowler - Back out bug 1057904, bug 1060869, bug 923302 for bustage
  749. # [02:36] * Joins: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp)
  750. # [02:37] <KWierso> erahm: down to 44 now :)
  751. # [02:37] <erahm> KWierso: heh, I guess it's just super backed up
  752. # [02:37] * Joins: milan (milan@moz-69F4F0E.dsl.bell.ca)
  753. # [02:38] <KWierso> erahm: I guess people started pushing their broken stuff to try when they saw trunk trees closed for the last five hours :P
  754. # [02:38] <froydnj> seth: probably a bad sign when you go looking for the sherriff than the sherriff comes looking for you
  755. # [02:39] * Quits: espadrine` (ttyl@moz-6ECBC304.w92-128.abo.wanadoo.fr) (Ping timeout)
  756. # [02:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7787a8038654 - Neil Rashbrook - Bug 1074114 Propagate error thrown when constructing the JS implementation r=bz
  757. # [02:39] <seth> froydnj: i figured they'd catch me sooner or later, so i might as well turn myself in =)
  758. # [02:40] <KWierso> jesup: you might want to get your stuff in soon before more people have a chance to break inbound ;)
  759. # [02:40] * Joins: espadrine` (ttyl@moz-6ECBC304.w92-128.abo.wanadoo.fr)
  760. # [02:40] <froydnj> seth: bravo
  761. # [02:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c772f124fed2 - Stephen Pohl - Bug 1075492: Fix broken ./mach webapprt-test-chrome on OSX (due to v2 signature changes). r=myk
  762. # [02:40] * Joins: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net)
  763. # [02:40] * Quits: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net) (Client exited)
  764. # [02:42] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/3df44d9a1d4c - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  765. # [02:42] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/7a189663a91d - B2G Bumper Bot - Bumping manifests a=b2g-bump
  766. # [02:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1f5252ebc2c0 - Randell Jesup - Bug 1073345: Block duplicate Shmems from the GMP SharedMemory cache r=cpearce
  767. # [02:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0ae42938a72d - Randell Jesup - Bug 1073350: Validate that returned decoded Shmems have enough data r=cpearce
  768. # [02:43] <jesup> KWierso: done!
  769. # [02:43] <jesup> (1 person edged me out in a push race!)
  770. # [02:44] * Joins: jchaulk (jchaulk@moz-16B31471.dsl.teksavvy.com)
  771. # [02:44] * Quits: jchaulk (jchaulk@moz-16B31471.dsl.teksavvy.com) (Connection reset by peer)
  772. # [02:45] <Callek> jgilbert: ping
  773. # [02:45] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  774. # [02:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/e80281b11c63 - Shian-Yow Wu - Bug 1057855 - Fix error checking when calling nsZipArchive::GetItem(). r=smaug, a=bajaj
  775. # [02:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/ba7f83d8c2b2 - Oscar Patiño - Bug 1073486 - Define MOZ_WEBRTC_OMX when building webrtc.org code. r=jesup, a=lmandel
  776. # [02:45] <Callek> jgilbert: sooo it seems we have no current solution to https://bugzilla.mozilla.org/show_bug.cgi?id=1069114 for SeaMonkey, and *monday* is the beta->release uplift and we have no beta release yet
  777. # [02:45] <Callek> jgilbert: I'm eagerly looking for a solution we can use
  778. # [02:46] * coop is now known as coop|afk
  779. # [02:50] * Quits: bajaj (bajaj_afk@moz-A7D0AB95.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  780. # [02:51] * ewong is now known as ewong|sleep
  781. # [02:52] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  782. # [02:52] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  783. # [02:54] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  784. # [02:54] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  785. # [02:55] * Quits: sheeri (sheeri@moz-DB4A9C19.scl3.mozilla.com) (Quit: Lost terminal)
  786. # [02:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/8b4d28f1b874 - Jared Wein - No bug - Change tabs to spaces in MozLoopPushHandler.jsm r=me DONTBUILD
  787. # [02:56] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  788. # [02:57] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  789. # [02:57] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/f83da0524124 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  790. # [02:57] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/d4ecc0399ad9 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  791. # [02:58] * Quits: mchang (mchang@moz-95B568D6.socal.res.rr.com) (Quit: mchang)
  792. # [02:58] * Quits: WaltS48 (Thunderbir@moz-22305729.pitbpa.east.verizon.net) (Quit: WaltS48)
  793. # [03:00] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  794. # [03:02] * Quits: tomasz (Adium@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  795. # [03:02] * Quits: KaiRo (robert@A2191B9D.1B3E9086.2A59B51F.IP) (Input/output error)
  796. # [03:04] * Joins: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com)
  797. # [03:04] * Quits: davispuh (quassel@D86C75FF.4605F0B6.D1BFA94D.IP) (Ping timeout)
  798. # [03:04] * Quits: brendan (brendaneic@6A24F57D.51C7F032.FA49AE52.IP) (Quit: brendan)
  799. # [03:05] * nthomas|away is now known as nthomas
  800. # [03:07] * Quits: shorlander (shorlander@moz-26B8EBF6.swo.res.rr.com) (Quit: )
  801. # [03:07] * Joins: KenChang (KenChang@moz-99690620.hinet-ip.hinet.net)
  802. # [03:08] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  803. # [03:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/812bc959f32b - Kartikaya Gupta - Bug 1074985 - Remove unimplemented method declarations. r=wesj
  804. # [03:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/40c2c60d7666 - Kartikaya Gupta - Bug 1068571 - Clear velocity on touch-end even if in the NOTHING state. r=botond
  805. # [03:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1c4d997e2260 - Kartikaya Gupta - Bug 1043859 - Expose the APZC overscroll transform as a separate function. r=botond
  806. # [03:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0b4ff0427b86 - Kartikaya Gupta - Bug 1043859 - Fix the code to remove the async transform from scrollbar layers that are descendants of their content. r=botond
  807. # [03:11] * Quits: JosiahOne (Instantbir@moz-B458D21B.hfc.comcastbusiness.net) (Ping timeout)
  808. # [03:13] * Joins: JosiahOne (Instantbir@moz-B458D21B.hfc.comcastbusiness.net)
  809. # [03:13] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  810. # [03:14] * Joins: dholbert_ (dholbert@34C769E8.FFAED650.4AA0E643.IP)
  811. # [03:16] * Quits: dholbert_ (dholbert@34C769E8.FFAED650.4AA0E643.IP) (Quit: Ex-Chat)
  812. # [03:16] <karl> jesup: apparently -Werror=unused-function picks up unused declarations too
  813. # [03:16] * Joins: mastizada (Thunderbir@9D755305.77F0CAC6.F82549C5.IP)
  814. # [03:17] <KWierso> jesup: closed inbound so you can push a fix with CLOSED TREE
  815. # [03:17] <dholbert> jesup / karl: er, why are we declaring a static function in a .h file?
  816. # [03:18] <karl> i haven't looked at the code, but why not?
  817. # [03:18] * jlund|away is now known as jlund
  818. # [03:18] <karl> oh, without a definition, yes that doesn't make sense
  819. # [03:18] <dholbert> yeah
  820. # [03:18] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5a28afa66e38 - Cervantes Yu - Bug 1051633 - Make sure magic file descriptors in the content process will not be taken for other uses. r=khuey, a=bajaj
  821. # [03:18] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/379063b452d3 - Botond Ballo - Bug 1066259 - Change Axis to operate in Screen pixels where possible. r=kats, a=lmandel
  822. # [03:18] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/9f15e2107d28 - Botond Ballo - Bug 1062483 - Make the overscroll effect harder to trigger accidentally. r=kats, a=bajaj
  823. # [03:19] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/1b49a4b95fd9 - Max Li - Bug 980510 - After moving by granularity, swiping to next object brings up current object. r=eeejay, a=lmandel
  824. # [03:19] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/825f06dd48b4 - Gijs Kruitbosch - Bug 1052534 - Update back/fwd keyhole design on yosemite. r=jaws, a=lmandel
  825. # [03:19] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/0162625db84f - Markus Stange - Bug 1059991 - Do new-style focus drawing on 10.10 even when building against a pre-10.8 SDK. r=smichaud, a=lmandel
  826. # [03:19] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  827. # [03:20] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  828. # [03:21] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  829. # [03:21] * Joins: jw_wang (jw_wang@moz-E37F359D.hinet-ip.hinet.net)
  830. # [03:22] * Quits: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  831. # [03:22] <dholbert> karl / jesup, I think the patch shouldn't actually work as-written, since the one caller of the (static) function is in a different .cpp file, except it probably "works" because unified builds mean they end up in the same compilation unit
  832. # [03:22] * Quits: jdover (jdover@22470A5D.C8C2174E.C0B90B08.IP) (Quit: Computer has gone to sleep.)
  833. # [03:23] <dholbert> looks like jesup might be away; I'll back him out & comment on the bug
  834. # [03:23] * karl hasn't seen that unified gotcha before
  835. # [03:23] * Joins: bz_away (bzbarsky@moz-72881629.bstnma.fios.verizon.net)
  836. # [03:24] * Joins: tomasz (Adium@CC93B76.397D472B.B8C5454C.IP)
  837. # [03:25] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  838. # [03:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/66ad106fcb68 - Daniel Holbert - Backout 0ae42938a72d (bug 1073350) for build bustage, on a CLOSED TREE
  839. # [03:25] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  840. # [03:26] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  841. # [03:30] * Quits: chewey (chewey@moz-27F1CBB5.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  842. # [03:31] * Joins: chewey (chewey@moz-314E3FD0.dip0.t-ipconnect.de)
  843. # [03:32] <dholbert> karl, I'm not 100% sure that that's what happened here, but it seems like a problem that *could* happen, at least
  844. # [03:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a0b82c954206 - Nicholas Nethercote - Bug 1062709 (part 1) - Add a frame number argument to NS_WalkStackCallback. r=dbaron.
  845. # [03:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7a1b7d7eba12 - Nicholas Nethercote - Bug 1062709 (part 2) - Clean up stack printing and fixing. r=dbaron.
  846. # [03:32] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  847. # [03:33] * Quits: emtwo (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  848. # [03:34] <karl> dholbert: i think you were probly right
  849. # [03:34] * Quits: luke (luke@moz-6C4B3E7.dhcp.ftwo.tx.charter.com) (Quit: Leaving.)
  850. # [03:35] * mconley|gym is now known as mconley
  851. # [03:38] * Quits: sfink (chatzilla@moz-BC9D71A3.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  852. # [03:38] * KWierso is now known as KWierso|afk
  853. # [03:38] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  854. # [03:38] * Quits: kgrandon (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  855. # [03:41] * Quits: marco (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  856. # [03:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a6d944b90a6e - Richard Newman - Bug 1071785 - Fix strict mode error in httpd.js. r=trivial
  857. # [03:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f20d3ef82554 - Richard Newman - Bug 1045053 - Part 0: add descriptive comments for locale handling. r=me
  858. # [03:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4782b099ef93 - Richard Newman - Bug 1045053 - Part 1: set intl.accept_languages from Android OS/app locale. r=bnicholson
  859. # [03:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9ac001517068 - Richard Newman - Bug 1045053 - Part 2: tests for OS locale handling. r=bnicholson
  860. # [03:42] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving)
  861. # [03:42] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  862. # [03:43] * Joins: yliao (yliao@D4347F82.EBEBF5B2.BB4074D5.IP)
  863. # [03:43] * Quits: jgilbert (jgilbert@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  864. # [03:44] * Quits: yliao (yliao@D4347F82.EBEBF5B2.BB4074D5.IP) (Connection reset by peer)
  865. # [03:44] * bc is now known as bc|afk
  866. # [03:44] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/858a86ba0a5c - Eitan Isaacson - Bug 1067509 - Refactor jsat content test runner. r=yzen, a=test-only
  867. # [03:44] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/2c9289c8a725 - Eitan Isaacson - Bug 1061671 - Wait for document and frame content load to complete before starting jsat content tests. r=yzen, a=test-only
  868. # [03:44] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/34ced01a5a6d - Jim Chen - Bug 1059907 - Include access type in permission setting. r=mfinkle, a=lmandel
  869. # [03:44] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/adf6215f8a6a - Yura Zenevich - Bug 1069877 - Ensure that vc position does not jump when already set in loaded document. r=eeejay, a=lmandel
  870. # [03:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/87a153443769 - Gijs Kruitbosch - Bug 1063529 - Should catch shell service exceptions. r=mconley, a=lmandel
  871. # [03:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/fd7ee4fab0a1 - Wes Johnston - Bug 1063541 - Destroy singleton NetworkManager object when requested. r=mfinkle, a=lmandel
  872. # [03:45] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  873. # [03:46] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  874. # [03:47] <jesup> dholbert: it was supposed to be a class static method, not a static function.... Works much better that way
  875. # [03:47] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  876. # [03:48] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Ping timeout)
  877. # [03:48] * Joins: yliao (yliao@D4347F82.EBEBF5B2.BB4074D5.IP)
  878. # [03:51] * Quits: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com) (Client exited)
  879. # [03:52] * Joins: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com)
  880. # [03:52] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  881. # [03:53] <nthomas> IT will be doing some work infra behind TBPL in about 10 mins, treeherder will probably be unaffected
  882. # [03:54] <dholbert> jesup, ah, yeah -- that would make sense :)
  883. # [03:54] * Joins: shelly (shelly@moz-E37F359D.hinet-ip.hinet.net)
  884. # [03:54] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  885. # [03:54] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  886. # [03:55] * @roc keeps wondering why people keep sending review requests even though he's on vacation
  887. # [03:55] * Joins: tn (tim@moz-E7CE1D28.wp.shawcable.net)
  888. # [03:56] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/e10f2bc2dd00 - Ryan VanderMeulen - Backed out changeset 5a28afa66e38 (bug 1051633) for bustage.
  889. # [03:56] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  890. # [03:57] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  891. # [03:57] <jesup> roc: because we don't know you're on vacation, of course
  892. # [03:58] <@roc> it says so in Bugzilla!
  893. # [03:58] * Joins: boris (boris@moz-AEFA8429.emome-ip.hinet.net)
  894. # [03:58] <jesup> of course, your bugzilla shows it. But that assumes someone actually waits to see the autocomplete...
  895. # [03:59] <RyanVM|mfbt> roc: Please redirect that bug 1059101 request to someone? :)
  896. # [03:59] <RyanVM|mfbt> roc: I'd really hate to see that sit until you return
  897. # [04:00] * Joins: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net)
  898. # [04:00] * Quits: vebb (mike@moz-A9F59665.callplus.net.nz) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  899. # [04:00] <RyanVM|mfbt> roc: that works too :P :)
  900. # [04:00] <jesup> roc: I can review if you want, but it will take me longer to go through the page of proof and related code. If I can't be sure, I'll ask for help.
  901. # [04:00] <RyanVM|mfbt> seriously, have a good vacation :)
  902. # [04:00] <@roc> jesup: you're welcome to keep sending me reviews
  903. # [04:00] * Quits: atsai (atsai@moz-E37F359D.hinet-ip.hinet.net) (Quit: Leaving)
  904. # [04:00] <@roc> I just can't promise I'll do them :-)
  905. # [04:01] <tbsaunde> jesup: or uses the web UI at all
  906. # [04:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/36107e095754 - Edgar Chen - Bug 1007062 - Fix SpecialPower API doesn't work on Marionette test-container. r=mdas,jmaher
  907. # [04:03] <jesup> Interesting; mach switched from gcc 4.8 to clang 3.4 on my Fedora19 system
  908. # [04:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bdf9367d5122 - Eric Rahm - Bug 1076417 - nsNativeThemeGTK.h is missing an include guard. r=roc
  909. # [04:04] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  910. # [04:04] * nsm is now known as nsm|away
  911. # [04:05] * Quits: milan (milan@moz-69F4F0E.dsl.bell.ca) (Quit: )
  912. # [04:05] * Quits: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Quit: Leaving.)
  913. # [04:05] <jesup> looks like build time is a few minutes worse, though I'd need to do a straight test to be sure - I stopped to fig an error so the total is off, but it's still as high as it was for a full build on GCC
  914. # [04:06] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  915. # [04:07] <jesup> dholbert: does this look better: https://bugzilla.mozilla.org/page.cgi?id=splinter.html&bug=1073350&attachment=8498583
  916. # [04:08] <jesup> s/fig/fix/ I hate the MS 4000 keyboard. all the good ergo keyboard are gone (ok, almost all)
  917. # [04:08] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  918. # [04:08] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  919. # [04:11] * Joins: atsai (atsai@moz-99690620.hinet-ip.hinet.net)
  920. # [04:11] * Quits: ashughes (uid34327@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  921. # [04:12] * Joins: janv (varga@moz-B791613F.dynamic.orange.sk)
  922. # [04:14] * Quits: JosiahOne (Instantbir@moz-B458D21B.hfc.comcastbusiness.net) (Ping timeout)
  923. # [04:14] * Quits: janv (varga@moz-B791613F.dynamic.orange.sk) (Ping timeout)
  924. # [04:15] * Joins: janv (varga@moz-B791613F.dynamic.orange.sk)
  925. # [04:15] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  926. # [04:16] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  927. # [04:16] * Quits: ddahl (ddahl@3F1D1828.C626B060.37339E3A.IP) (Ping timeout)
  928. # [04:16] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  929. # [04:17] * chmanchester is now known as chmanchester|afk
  930. # [04:17] * Quits: Jan\ (kvirc@D8D19A17.1373B935.529AC0B9.IP) (Ping timeout)
  931. # [04:19] * Joins: kanru (kanru@moz-DB4A9C19.scl3.mozilla.com)
  932. # [04:20] * Joins: seanlin (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  933. # [04:20] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/29e38b914425 - Nils Ohlmeier [:drno] - Bug 1066775 - Fix end of ICE gathering expected. r=spolk, a=lmandel
  934. # [04:20] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/066617542782 - Kartikaya Gupta - Bug 1070993 - Allow for sub-app-unit rounding error when deciding if an APZ is checkerboarding or not. r=botond, a=bajaj
  935. # [04:20] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/045b5012a963 - Gijs Kruitbosch - Bug 1065429 - Fix tabbar border on yosemite. r=mconley, a=lmandel
  936. # [04:21] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/33ccccf7550b - Wes Johnston - Bug 1074189 - Lazily create GeckoNetworkManager. r=mfinkle, a=lmandel
  937. # [04:21] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  938. # [04:21] * Joins: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net)
  939. # [04:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/146eef5daadc - Randell Jesup - Bug 1073350: Validate that returned decoded Shmems have enough data r=cpearce
  940. # [04:21] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  941. # [04:22] * Quits: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net) (Connection reset by peer)
  942. # [04:22] * Quits: hallvors (uid23371@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  943. # [04:23] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  944. # [04:23] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  945. # [04:24] * Joins: vicamo (vicamo@moz-5EFD8E31.dynamic.hinet.net)
  946. # [04:24] * Joins: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net)
  947. # [04:25] * Quits: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: tantek)
  948. # [04:25] * Quits: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP) (Ping timeout)
  949. # [04:25] * Quits: alexbardas (alexbardas@moz-62518563.mtv2.mozilla.com) (Input/output error)
  950. # [04:26] * Quits: vicamo (vicamo@moz-5EFD8E31.dynamic.hinet.net) (Ping timeout)
  951. # [04:26] * Quits: RyanVM|mfbt (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net) (Quit: RyanVM|mfbt)
  952. # [04:27] * Joins: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net)
  953. # [04:30] * Quits: Boriss (Boriss@moz-BA625DEF.v250d.public.monkeybrains.net) (Quit: Boriss)
  954. # [04:30] <nthomas> urgh, https://hg.mozilla.org/try/rev/e31cd9c94340
  955. # [04:30] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  956. # [04:31] * Joins: Morris (Morris@moz-E37F359D.hinet-ip.hinet.net)
  957. # [04:31] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  958. # [04:32] * Quits: Rik|afk (rik@moz-E813DFA5.fbx.proxad.net) (Input/output error)
  959. # [04:32] * Joins: Jerry_Mac (hshih@moz-99690620.hinet-ip.hinet.net)
  960. # [04:33] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  961. # [04:34] <heycam> remote: Error accessing https://treestatus.mozilla.org/mozilla-inbound?format=json :
  962. # [04:34] <heycam> remote: HTTP Error 500: INTERNAL SERVER ERROR
  963. # [04:34] <nthomas> it are deploying sec changes, should be back soon
  964. # [04:34] <heycam> k
  965. # [04:35] <nthomas> if not you can tell them in #moc
  966. # [04:35] * Quits: serge (Thunderbir@moz-79F95649.dsl.teksavvy.com) (Ping timeout)
  967. # [04:35] * jhlin is now known as jhlin|away
  968. # [04:36] <nthomas> buildbot is having a fun time too, may be some pushes or test requests that get missed
  969. # [04:36] * Joins: lars_ (larsg@moz-5DD47E4E.dip0.t-ipconnect.de)
  970. # [04:37] <nthomas> trees closed for a few
  971. # [04:37] * Joins: nli (nli@moz-DB4A9C19.scl3.mozilla.com)
  972. # [04:37] * Quits: larsg (larsg@moz-A7D3CA3A.dip0.t-ipconnect.de) (Ping timeout)
  973. # [04:38] * zz_miketaylr is now known as miketaylr
  974. # [04:39] * Quits: espadrine` (ttyl@moz-6ECBC304.w92-128.abo.wanadoo.fr) (Ping timeout)
  975. # [04:39] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  976. # [04:40] * nsm|away is now known as nsm
  977. # [04:41] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  978. # [04:41] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  979. # [04:41] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  980. # [04:44] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  981. # [04:44] * Quits: lars_ (larsg@moz-5DD47E4E.dip0.t-ipconnect.de) (Quit: Ex-Chat)
  982. # [04:46] * Quits: chmanchester|afk (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP) (Quit: )
  983. # [04:46] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  984. # [04:47] * heycam is now known as heycam|away
  985. # [04:47] * Quits: boris (boris@moz-AEFA8429.emome-ip.hinet.net) (Connection reset by peer)
  986. # [04:49] * Joins: brsun (chatzilla@moz-E37F359D.hinet-ip.hinet.net)
  987. # [04:49] * Quits: yliao (yliao@D4347F82.EBEBF5B2.BB4074D5.IP) (Client exited)
  988. # [04:50] * Joins: TYLin (TYLin@moz-99690620.hinet-ip.hinet.net)
  989. # [04:50] * Joins: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net)
  990. # [04:50] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  991. # [04:50] * Quits: nrc (nrc@34E8ECDF.DC2C3734.616A18A6.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 35.0a1/20140930030202])
  992. # [04:51] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  993. # [04:51] <nthomas> the infra is back up, but there are gaps in coverage and will be some zombie builds which have finished but aren't marked as so
  994. # [04:51] * Joins: sunfish (chatzilla@1A6BB9F7.BB655638.4AA0E643.IP)
  995. # [04:52] <nthomas> trees reopened
  996. # [04:53] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  997. # [04:53] <nthomas> any compile job that is orange, is likely to be a failure to 'sendchange', which means trigger tests
  998. # [04:53] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  999. # [04:54] * Quits: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net) (Quit: )
  1000. # [04:54] <nthomas> and tree herder is missing the two latest commits on m-i
  1001. # [04:55] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  1002. # [04:58] * Quits: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net) (Quit: Leaving.)
  1003. # [05:00] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  1004. # [05:01] * Joins: vebb (mike@moz-A9F59665.callplus.net.nz)
  1005. # [05:02] * Joins: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net)
  1006. # [05:02] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1007. # [05:02] * Quits: TYLin (TYLin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1008. # [05:02] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  1009. # [05:02] * Joins: boris (boris@moz-E37F359D.hinet-ip.hinet.net)
  1010. # [05:03] * Quits: Jerry_Mac (hshih@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1011. # [05:03] * Joins: Jerry_Mac (hshih@moz-E37F359D.hinet-ip.hinet.net)
  1012. # [05:04] * Joins: TYLin (TYLin@moz-5EFD8E31.dynamic.hinet.net)
  1013. # [05:04] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  1014. # [05:06] * Joins: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP)
  1015. # [05:06] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  1016. # [05:06] * Quits: Optimizer (Optimizer@C08B129E.F49FA74B.D2D1FAF0.IP) (Ping timeout)
  1017. # [05:07] * jchen is now known as jchen|away
  1018. # [05:07] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  1019. # [05:07] * Quits: jgriffin (jgriffin@moz-791CC332.hsd1.wa.comcast.net) (Quit: jgriffin)
  1020. # [05:09] * Quits: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  1021. # [05:10] * Joins: dbaron (dbaron@510D751C.27376607.189F3E15.IP)
  1022. # [05:10] * ChanServ sets mode: +ao dbaron dbaron
  1023. # [05:11] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  1024. # [05:11] * lmandel is now known as lmandel_afk
  1025. # [05:12] * philor|away is now known as philor
  1026. # [05:12] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/b0aee9433884 - Byron Campen [:bwc] - Bug 1072044: Fire ICE signals on main. (aurora backport) r=mt a=abillings
  1027. # [05:14] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1028. # [05:14] * Joins: sewardj_ (sewardj@moz-B11CE24B.dip0.t-ipconnect.de)
  1029. # [05:15] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1030. # [05:15] * Joins: Optimizer (Optimizer@C08B129E.F49FA74B.D2D1FAF0.IP)
  1031. # [05:16] * Quits: sewardj (sewardj@moz-35C68E85.dip0.t-ipconnect.de) (Ping timeout)
  1032. # [05:18] * Joins: timdream (timdream@moz-A29932FC.dynamic.hinet.net)
  1033. # [05:18] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  1034. # [05:19] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1035. # [05:20] * jhlin|away is now known as jhlin
  1036. # [05:22] * Quits: mwobensmith (mwobensmit@moz-1479983A.dsl.dynamic.sonic.net) (Quit: Leaving.)
  1037. # [05:22] * Joins: wlach (wlach@moz-4883F17D.vif.net)
  1038. # [05:23] * Joins: mccr8 (mccr8@moz-F3D6C6BB.hsd1.ca.comcast.net)
  1039. # [05:25] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/e97e1abb8395 - Byron Campen [:bwc] - Bug 1072044: Fire ICE signals on main. (beta backport) r=mt a=abillings
  1040. # [05:25] * Quits: MrMazda (fmcz@moz-CB202EEF.cable.mindspring.com) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 1.1.18/2009082712])
  1041. # [05:26] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  1042. # [05:26] * Quits: vebb (mike@moz-A9F59665.callplus.net.nz) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  1043. # [05:27] * Quits: KWierso|afk (chatzilla@A8B5A648.5C5B13F2.3BDB9670.IP) (Connection reset by peer)
  1044. # [05:27] * Joins: KWierso|afk (chatzilla@A8B5A648.5C5B13F2.3BDB9670.IP)
  1045. # [05:27] * Joins: MrMazda (fmcz@moz-CB202EEF.cable.mindspring.com)
  1046. # [05:29] * Joins: mchen (chatzilla@moz-E37F359D.hinet-ip.hinet.net)
  1047. # [05:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0e9883d2467b - Nicholas Nethercote - Bug 1069034 - Update Valgrind suppressions to handle the more detailed stack traces given by Valgrind 3.10. r=jseward.
  1048. # [05:32] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1049. # [05:32] * ChanServ sets mode: +o roc
  1050. # [05:32] * Quits: PiresFelix (Leonardo@moz-90356C97.dynamic.adsl.gvt.net.br) (Quit: Leaving)
  1051. # [05:32] * Joins: Sushant94 (Sushant@60837A23.9841A019.D30E9BEF.IP)
  1052. # [05:33] * Quits: njn (njn@moz-F79E40B5.dyn.iinet.net.au) (Ping timeout)
  1053. # [05:33] * Joins: njn (njn@moz-43941E63.dyn.iinet.net.au)
  1054. # [05:33] * ChanServ sets mode: +o njn
  1055. # [05:34] * Joins: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP)
  1056. # [05:35] <nemo> !@#$ new sync
  1057. # [05:35] <nemo> hate hate hate
  1058. # [05:35] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  1059. # [05:35] <nemo> been pairing devices for years and all of a sudden have to remember a password that can't remember
  1060. # [05:35] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  1061. # [05:35] <nemo> gotta go through stupid reset procedure...
  1062. # [05:35] <nemo> why on earth don't they let the old sync procedure work :(
  1063. # [05:36] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  1064. # [05:36] * Quits: Optimizer (Optimizer@C08B129E.F49FA74B.D2D1FAF0.IP) (Ping timeout)
  1065. # [05:37] <nemo> even worse
  1066. # [05:37] <nemo> damn sync says can't change password 'cause it is same as old one...
  1067. # [05:37] <nemo> is the password she's trying to type into her new phone now!
  1068. # [05:37] <nemo> the one that it says fails
  1069. # [05:37] <nemo> suuuuuuuuuuck
  1070. # [05:38] * Quits: bjacob (bjacob@moz-CC07A754.cable.teksavvy.com) (Ping timeout)
  1071. # [05:38] * Joins: kip (kip@moz-DDB15FC8.stc.novuscom.net)
  1072. # [05:38] * Quits: kip (kip@moz-DDB15FC8.stc.novuscom.net) (Client exited)
  1073. # [05:39] <nemo> oh. how lovely. it doesn't recognise her old sync as existing :(
  1074. # [05:39] <nemo> great... now what
  1075. # [05:39] * Quits: @njn (njn@moz-43941E63.dyn.iinet.net.au) (Ping timeout)
  1076. # [05:40] * Quits: till|din_ (till@moz-33A9F971.adsl.alicedsl.de) (Ping timeout)
  1077. # [05:40] * Joins: till|dinner (till@moz-E3DADFE5.adsl.alicedsl.de)
  1078. # [05:41] * Joins: jdm (jdm@moz-7276981B.dsl.teksavvy.com)
  1079. # [05:41] * Joins: Optimizer (Optimizer@C08B129E.F49FA74B.D2D1FAF0.IP)
  1080. # [05:41] * Joins: njn_ (njn@moz-BE91A9CC.dyn.iinet.net.au)
  1081. # [05:41] <nemo> desktop thinks it is on sync, mobile does not
  1082. # [05:42] <nemo> creating new account on mobile, no idea if it will work on desktop
  1083. # [05:42] <nemo> you'd think they'd try to create a smooth migration before breaking one of the core features :(
  1084. # [05:42] <nemo> liiiike keeping existing accoutns
  1085. # [05:43] * Quits: Jerry_Mac (hshih@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1086. # [05:43] * heycam|away is now known as heycam
  1087. # [05:44] * Joins: Jerry_Mac (hshih@moz-99690620.hinet-ip.hinet.net)
  1088. # [05:45] * Quits: ahal|afk (ahal@moz-CD77F5E2.cpe.pppoe.ca) (Input/output error)
  1089. # [05:46] <nemo> yep. none of the desktop stuff showing in sync :(
  1090. # [05:47] * Quits: TYLin (TYLin@moz-5EFD8E31.dynamic.hinet.net) (Ping timeout)
  1091. # [05:47] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  1092. # [05:48] * Joins: TYLin (TYLin@moz-99690620.hinet-ip.hinet.net)
  1093. # [05:49] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  1094. # [05:51] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1095. # [05:52] * Quits: boris (boris@moz-E37F359D.hinet-ip.hinet.net) (Quit: Leaving.)
  1096. # [05:52] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  1097. # [05:53] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Input/output error)
  1098. # [05:53] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  1099. # [05:54] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  1100. # [05:55] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Ping timeout)
  1101. # [05:56] * Joins: kk1fff (kk1fff@moz-DB4A9C19.scl3.mozilla.com)
  1102. # [05:56] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  1103. # [05:56] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  1104. # [05:57] * Joins: smontagu (chatzilla@moz-5E837974.red.bezeqint.net)
  1105. # [06:00] * jchen|away is now known as jchen
  1106. # [06:00] * Joins: mwargers (mwargers@moz-AF369B35.adsl.online.nl)
  1107. # [06:02] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Ping timeout)
  1108. # [06:02] * Quits: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net) (Connection reset by peer)
  1109. # [06:02] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1110. # [06:02] * ChanServ sets mode: +o roc
  1111. # [06:03] * Quits: mwargers (mwargers@moz-AF369B35.adsl.online.nl) (Ping timeout)
  1112. # [06:03] * Quits: CoreDuo (CoreDuo@moz-7D4A79F5.coreduo.me.uk) (Ping timeout)
  1113. # [06:03] * Joins: CoreDuo (CoreDuo@moz-7D4A79F5.coreduo.me.uk)
  1114. # [06:03] * Quits: mmc (uid16596@moz-A42E5B7B.irccloud.com) (Quit: Connection closed for inactivity)
  1115. # [06:07] * Quits: Sushant94 (Sushant@60837A23.9841A019.D30E9BEF.IP) (Quit: Leaving)
  1116. # [06:07] * Quits: Jerry_Mac (hshih@moz-99690620.hinet-ip.hinet.net) (Quit: This computer has gone to sleep)
  1117. # [06:09] <rstrong> nthomas: do you know if kicking off nightly builds on oak also kick off nightly l10n builds on oak?
  1118. # [06:10] <nthomas> rstrong: yes, it will
  1119. # [06:10] <rstrong> thanks!
  1120. # [06:10] <nthomas> cue tbpl link to prove me wrong
  1121. # [06:10] * Joins: nrc (nrc@8F315326.79BBC65A.D0D038FD.IP)
  1122. # [06:11] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  1123. # [06:12] * jchen is now known as jchen|away
  1124. # [06:12] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  1125. # [06:12] * Quits: TYLin (TYLin@moz-99690620.hinet-ip.hinet.net) (Quit: TYLin)
  1126. # [06:13] * Joins: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net)
  1127. # [06:14] * Quits: wlach (wlach@moz-4883F17D.vif.net) (Ping timeout)
  1128. # [06:14] * Joins: TYLin (TYLin@moz-E37F359D.hinet-ip.hinet.net)
  1129. # [06:15] <rstrong> nthomas: I have no idea if it does since the desktop builds don't have l10n on them as the B2G builds do. Last I looked into l10n via a web page I used tinderbox
  1130. # [06:15] * Joins: Jerry_Mac (hshih@moz-E37F359D.hinet-ip.hinet.net)
  1131. # [06:15] <rstrong> is there a page where I can see the state?
  1132. # [06:17] <nthomas> desktop l10n builds don't show up on tbpl, no
  1133. # [06:18] <rstrong> nthomas: so, the only way to check is to look at the logs in http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/...?
  1134. # [06:18] * Quits: Jerry_Mac (hshih@moz-E37F359D.hinet-ip.hinet.net) (Quit: This computer has gone to sleep)
  1135. # [06:19] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  1136. # [06:20] <nthomas> rstrong: yes, I think so
  1137. # [06:20] <rstrong> thanks!
  1138. # [06:20] * Quits: till|dinner (till@moz-E3DADFE5.adsl.alicedsl.de) (Input/output error)
  1139. # [06:20] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  1140. # [06:21] * rstrong funny to find myself missing tinderbox due to tbpl not having functionality we used to have
  1141. # [06:22] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  1142. # [06:23] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  1143. # [06:23] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1144. # [06:24] * Joins: lpy (lpy@363ECC5F.6E01A51A.65042015.IP)
  1145. # [06:25] * Quits: a-865 (fmcz@moz-CB202EEF.cable.mindspring.com) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.29.1/20140923221653])
  1146. # [06:30] * Joins: a-865 (fmcz@moz-CB202EEF.cable.mindspring.com)
  1147. # [06:30] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1148. # [06:32] * Quits: mccr8 (mccr8@moz-F3D6C6BB.hsd1.ca.comcast.net) (Quit: computer sleep)
  1149. # [06:33] * Joins: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP)
  1150. # [06:35] * Quits: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP) (Quit: Leaving.)
  1151. # [06:35] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1152. # [06:36] * nthomas is now known as nthomas|away
  1153. # [06:37] <dholbert> jesup, yup
  1154. # [06:38] * Quits: sunfish (chatzilla@1A6BB9F7.BB655638.4AA0E643.IP) (Ping timeout)
  1155. # [06:38] * Quits: automata (automata@15BB23CE.DA161F74.E24837B7.IP) (Quit: This computer has gone to sleep)
  1156. # [06:39] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  1157. # [06:41] * Joins: billm (billm@moz-94892FBF.hsd1.ca.comcast.net)
  1158. # [06:41] * Joins: ehugg (ehugg@moz-F46F489D.hsd1.wa.comcast.net)
  1159. # [06:44] * Joins: lizzard (ehenry@81E7E251.CD61CCD.4AA0E643.IP)
  1160. # [06:44] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  1161. # [06:45] * Joins: bdahl (bdahl@FC8C2DB8.A522C71B.4AA0E643.IP)
  1162. # [06:47] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Ping timeout)
  1163. # [06:47] * Joins: vebb (mike@moz-A9F59665.callplus.net.nz)
  1164. # [06:48] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  1165. # [06:48] * Quits: lizzard (ehenry@81E7E251.CD61CCD.4AA0E643.IP) (Ping timeout)
  1166. # [06:48] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  1167. # [06:49] * Quits: grobinson (grobinson@moz-8E3BD44C.dsl.dynamic.sonic.net) (Input/output error)
  1168. # [06:52] * Quits: LeandroL (leandro@AAA9E8C0.BC5C41C1.218432E1.IP) (Quit: Leaving)
  1169. # [06:53] * Quits: bdahl (bdahl@FC8C2DB8.A522C71B.4AA0E643.IP) (Input/output error)
  1170. # [06:54] * Joins: bdahl (bdahl@FC8C2DB8.A522C71B.4AA0E643.IP)
  1171. # [06:54] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  1172. # [06:56] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Ping timeout)
  1173. # [06:56] * Quits: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP) (Quit: mixedpuppy)
  1174. # [06:57] * Joins: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP)
  1175. # [06:58] * Joins: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP)
  1176. # [06:59] * Joins: gaurav0x (gaurav_rai@8AFFBE4A.1BEAF57F.40CEB881.IP)
  1177. # [06:59] * Quits: mastizada (Thunderbir@9D755305.77F0CAC6.F82549C5.IP) (Ping timeout)
  1178. # [07:01] * Joins: bdahl_ (bdahl@moz-50253CE8.mycingular.net)
  1179. # [07:01] <jesup> erahm: note, I just pushed back on the "enable FORCE_PRLOG everywhere" push - not that I dislike the goal; I love the goal, but the perf questions are far from answered IMHO.
  1180. # [07:02] * Quits: bdahl (bdahl@FC8C2DB8.A522C71B.4AA0E643.IP) (Ping timeout)
  1181. # [07:02] * Quits: Matti_away (Matti@moz-F7A5CD86.dip0.t-ipconnect.de) (Ping timeout)
  1182. # [07:06] * Quits: billm (billm@moz-94892FBF.hsd1.ca.comcast.net) (Ping timeout)
  1183. # [07:06] * Joins: Matti_away (Matti@moz-C2919E43.dip0.t-ipconnect.de)
  1184. # [07:06] * Matti_away is now known as Matti
  1185. # [07:07] <erahm> jesup: that's fine, but we need a better way to do perf testing, while it's easy to ask for perf testing on everything ever it's much harder to do
  1186. # [07:09] <kamidphish> Does anyone know if it's possible to carry r+ with hg bzexport?
  1187. # [07:10] <kamidphish> seth: ^^^
  1188. # [07:10] * Quits: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP) (Quit: mixedpuppy)
  1189. # [07:10] * Joins: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP)
  1190. # [07:10] * Joins: Tomcat (Tomcat@moz-DB4A9C19.scl3.mozilla.com)
  1191. # [07:11] * Joins: goutamnair (uid25773@moz-A42E5B7B.irccloud.com)
  1192. # [07:15] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  1193. # [07:16] <seth> kamidphish: I think I filed a bug about that a long time ago but to my knowledge, you can't.
  1194. # [07:16] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Ping timeout)
  1195. # [07:16] <kamidphish> seth: k
  1196. # [07:17] <jesup> erahm: agreed, but you don't need to test *everything*. And you can run mochitests locally. Also: mochitests test functionality, and often will do things like "play 1 second of video then kill it", which means that if there's a significant overhead in some core leafnode function, it may not get invoked enough times to show you that (say) Youtube will use 10% more CPU due to audio...
  1197. # [07:17] <jesup> ...processing. And adding locks to certain blocks of code (especially realtime code like audio/MediaStreamGraph) can cause real problems. Locks can cause stalls, which means task-switches, and realtime code hates those. I'm trying to minimize the number of lock operations (ideally 0!) in normal processing of MediaStreamGraph which now it run off OS audio callbacks
  1198. # [07:17] * Joins: adalucinet (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1199. # [07:17] <erahm> jesup: for the record, I don't think we need locks. Unfortunately all I can run local tests on is my MBP
  1200. # [07:17] * Quits: bdahl_ (bdahl@moz-50253CE8.mycingular.net) (Connection reset by peer)
  1201. # [07:18] <erahm> jesup: and in theory my b2g devices of course, but all of our perf tests are geared towards app startup
  1202. # [07:19] <jesup> NSPR logging wasn't designed to be realtime; realtime/low-overhead logging is quite tricky, though making the logging-off state fast is a lot easier.
  1203. # [07:20] <jesup> erahm: there's also talos, which unlike mochitests was designed to measure perf (though admittedly focused mostly on time to load plus JS-and-UI-type stuff)
  1204. # [07:20] * flod|away is now known as flod
  1205. # [07:20] <erahm> jesup: For sure, it's not intended for RT. But logging in generally isn't intended for RT.
  1206. # [07:21] <erahm> jesup: I can certainly run talos, but again that's not real hardware
  1207. # [07:21] <jesup> You can do realtime logging; the biggest thing is to use pre-allocated buffers and separate output threads
  1208. # [07:21] <erahm> jesup: And that's a non-starter on b2g
  1209. # [07:22] <jesup> erahm: Hmmm, I think a fair bit of talos runs on real hardware. AWS consistency isn't high.
  1210. # [07:22] * Joins: bdahl (bdahl@moz-50253CE8.mycingular.net)
  1211. # [07:22] <jesup> unless you pay a lot more I think
  1212. # [07:22] * njn_ is now known as njn
  1213. # [07:23] <erahm> jesup: yeah it' s definitely worth looking into, I'll try to see if we have actual hardware to run tests on
  1214. # [07:23] <jesup> We do have plenty of people which different hardware that could run a script to do whatever tests you need on different platforms
  1215. # [07:23] * Quits: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  1216. # [07:23] <jesup> erahm: have you talked to jmaher?
  1217. # [07:23] * whimboo|afk is now known as whimboo
  1218. # [07:23] <kgrandon> Any sheriffs here? I have a question about when b2g bumper bot runs..
  1219. # [07:24] <erahm> jesup: no, is he a perf person? Any leads in the right direction are much appreciated!
  1220. # [07:24] <jesup> talos
  1221. # [07:24] <jesup> also talk to bsmedberg who knows a lot about windows perf (and ted)
  1222. # [07:25] * Quits: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com) (Client exited)
  1223. # [07:26] <erahm> jesup: Perfect, I'll reach out to them tomorrow
  1224. # [07:27] * Quits: kaze|zZz (kaze@moz-7E0F0F9E.fbx.proxad.net) (No route to host)
  1225. # [07:28] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  1226. # [07:29] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1227. # [07:29] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Input/output error)
  1228. # [07:29] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1229. # [07:29] <jesup> BTW, if we're not changing them after startup (after a memory barrier), then it's safe for multiple readers without atomic or locks to check a value. Note that the current pattern of "on first access, do static PRLogModuleInfo *sLog; if (!sLog) { sLog = PR_NewLogModule("foo"); } return sLog;" isn't actually guaranteed TSAN safe if two threads hit it close together at the start.
  1230. # [07:29] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  1231. # [07:30] <jesup> though in practice we probably never hit the hole, and TSAN depends on the compiler feeling it's oats
  1232. # [07:31] * Quits: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com) (Ping timeout)
  1233. # [07:31] <jesup> glandium: ping - do you know about what's being proposed, and have any thoughts on FORCE_PRLOG everywhere?
  1234. # [07:31] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  1235. # [07:31] * Quits: timdream (timdream@moz-A29932FC.dynamic.hinet.net) (Quit: timdream)
  1236. # [07:31] <erahm> jesup: Yeah that assumption on static initialization being thread safe is unfortunate (although fixed in c++11). Our main goal is to allow runtime setting of log levels, so that's going to be something we have to deal with.
  1237. # [07:32] <jesup> I wasn't even referring to static initialization, it's the sLog = PR_NewLog...() that isn't safe
  1238. # [07:32] <erahm> jesup: there's a bug for that :)
  1239. # [07:33] <erahm> jesup: https://bugzilla.mozilla.org/show_bug.cgi?id=1073578
  1240. # [07:33] <glandium> (we should just stop using PR_LOG for that)
  1241. # [07:34] <glandium> (i had ideas, never had time to implement)
  1242. # [07:34] * Quits: TYLin (TYLin@moz-E37F359D.hinet-ip.hinet.net) (Quit: TYLin)
  1243. # [07:34] <glandium> (with one of the goal being not to have static initializers at all)
  1244. # [07:35] <jesup> I would love to be able to flip log bits on the fly and never have to recompile my opt builds to get them - but I am concerned with the perf aspects (esp on ARM and in realtime code)
  1245. # [07:35] * Joins: TYLin (TYLin@moz-99690620.hinet-ip.hinet.net)
  1246. # [07:36] <jesup> erahm: that bug doesn't address the bug I was pointing out (TSAN race possible)
  1247. # [07:36] <erahm> jesup: c++11 makes void func() { static foo* = new bar } safe
  1248. # [07:37] <erahm> jesup: we just need to convert from the usage of |void func() { static foo*; if (!foo) foo = bar; }|
  1249. # [07:38] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  1250. # [07:38] <jesup> erahm: how? (perhaps it disallows the compiler's ability to assume it's single-threaded? )
  1251. # [07:38] <erahm> jesup: you'll have to look at the standard, I'll see if I can dig it up
  1252. # [07:38] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Input/output error)
  1253. # [07:40] * Joins: glosoli (glosoli@1F8DFFFB.92418C4F.4C12D11B.IP)
  1254. # [07:41] <erahm> jesup: http://stackoverflow.com/questions/8102125/is-local-static-variable-initialization-thread-safe-in-c11
  1255. # [07:41] * Quits: glosoli (glosoli@1F8DFFFB.92418C4F.4C12D11B.IP) (Quit: Textual IRC Client: www.textualapp.com)
  1256. # [07:41] <jesup> http://stackoverflow.com/questions/8102125/is-local-static-variable-initialization-thread-safe-in-c11 --- this seems to say it's safe to run "static foo *bar = new foo;" on multiple threads. It doesn't say what happens if a second thread tries to read bar. Also, there's no guarantee of performance (though that can be looked at)
  1257. # [07:41] <erahm> heh
  1258. # [07:43] <jesup> At first I thought "oh, it's fine", then I realize it doesn't talk about reads (tsan may still be an issue) and internally it could just be a master lock, or "upgrading" it to atomic, etc which could again have perf issues.
  1259. # [07:43] <erahm> jesup: I'll leave you to spec reading, it's bedtime here :) Thanks for the feedback, I knew this bug would be controversial and I agree we need to make sure it doesn't have a noticeable impact on perf
  1260. # [07:44] <jesup> i.e. unless there's more verbiage, the normal compiler guidelines would let it spill into the value temporarily so long as it undid it before leaving the critical section
  1261. # [07:45] <jesup> erahm: thanks for taking on a tough task :-)
  1262. # [07:45] * Joins: nacerix (Instantbir@moz-44F94ACD.blueline.mg)
  1263. # [07:45] * Joins: victorporof (victorporo@C6EE648A.F0598F12.7E5C23C9.IP)
  1264. # [07:46] * jesup shudders a little every time he sees PR_LogNewModule code in our tree, knowing it's almost certainly wrong-in-theory
  1265. # [07:47] <jesup> glandium: bug 881389 FYI
  1266. # [07:47] * Quits: bdahl (bdahl@moz-50253CE8.mycingular.net) (Connection reset by peer)
  1267. # [07:48] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  1268. # [07:49] <glandium> jesup: filed it first ; bug 602467
  1269. # [07:50] * philor is now known as philor|away
  1270. # [07:53] <birtles> that mochitest failure in bz_away's push looks suspicious
  1271. # [07:54] * Joins: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net)
  1272. # [07:56] <jesup> glandium: I'll bet there are 1xxxxxx bugs for it... :-)
  1273. # [07:56] <jesup> marked as WONTFIX ;-)
  1274. # [07:57] * heycam is now known as heycam|away
  1275. # [07:57] <jesup> glandium: apparently MSVC 2013 doesn't implement the static constructor bit. :-(
  1276. # [07:58] <glandium> what static constructor bit?
  1277. # [07:58] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1278. # [07:58] * Joins: gakiwate (gakiwate@moz-364873F6.san.res.rr.com)
  1279. # [07:58] <jesup> http://stackoverflow.com/questions/8102125/is-local-static-variable-initialization-thread-safe-in-c11
  1280. # [07:59] <jesup> guaranteed-one-initializer-only thing (assuming your constructor is thread-safe/etc!)
  1281. # [07:59] * Quits: TYLin (TYLin@moz-99690620.hinet-ip.hinet.net) (Quit: TYLin)
  1282. # [08:00] * Joins: Jerry_Mac (hshih@moz-99690620.hinet-ip.hinet.net)
  1283. # [08:01] * Quits: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP) (Quit: Leaving.)
  1284. # [08:02] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  1285. # [08:02] * heycam|away is now known as heycam
  1286. # [08:04] * Joins: Avasz (quassel@A34AD40A.9B6A1DB6.4D6093D7.IP)
  1287. # [08:05] * Joins: timdream (timdream@moz-E37F359D.hinet-ip.hinet.net)
  1288. # [08:05] <bz_away> I'm looking into that crash
  1289. # [08:05] * Quits: brsun (chatzilla@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1290. # [08:06] <heycam> bz_away, looks like you need to grab out line/column only when rule isn't null
  1291. # [08:06] * Joins: brsun (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1292. # [08:06] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  1293. # [08:06] <bz_away> Yeah, indeed
  1294. # [08:06] <bz_away> Pushing fix
  1295. # [08:08] * heycam is now known as heycam|away
  1296. # [08:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/33a3fd4d1970 - Boris Zbarsky - Bug 1075617 followup to fix crash when rule is null.
  1297. # [08:12] * Tomcat is now known as Tomcat|sheriffduty
  1298. # [08:13] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  1299. # [08:15] * Quits: @dbaron (dbaron@510D751C.27376607.189F3E15.IP) (Ping timeout)
  1300. # [08:15] * Joins: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net)
  1301. # [08:15] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  1302. # [08:15] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Connection reset by peer)
  1303. # [08:16] * Quits: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp) (Quit: Konversation terminated!)
  1304. # [08:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/79ea9a38b446 - Brian Birtles - Bug 1074651 - Detect integer overflow in BaseTimeDuration::TicksFromMilliseconds; r=bz
  1305. # [08:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/41476731392e - Brian Birtles - Bug 1073396 - Make Element.getAnimationPlayers flush style; r=dbaron
  1306. # [08:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/723e749323c6 - Brian Birtles - Bug 1046055 part 1 - Remove nsPresContext parameter from nsLayoutUtils::HasCurrentAnimations; r=dbaron
  1307. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/37090bda6564 - Brian Birtles - Bug 1046055 part 2 - Rename AnimationPlayer::IsCurrent to HasCurrentSource; r=dbaron
  1308. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/860a94d6002a - Brian Birtles - Bug 1046055 part 3 - Add AnimationPlayerCollection::HasCurrentAnimationsForProperty; r=dbaron
  1309. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4945682e29a6 - Brian Birtles - Bug 1046055 part 4 - Add HasCurrentAnimationsForProperty to nsLayoutUtils; r=dbaron
  1310. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dedaffb8297a - Brian Birtles - Bug 1046055 part 5 - Check for current animations from ActiveLayerTracker::IsStyleAnimated; r=dbaron
  1311. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3a4ecfff302a - Brian Birtles - Bug 1074054 part 1 - Add Animation::IsInEffect; r=dbaron
  1312. # [08:17] * Quits: StevenLee (Adium@moz-F5594780.emome-ip.hinet.net) (Quit: Leaving.)
  1313. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/35e518128ca3 - Brian Birtles - Bug 1074054 part 2 - Make Element::GetAnimationPlayers return in-effect animations too; r=dbaron
  1314. # [08:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/28519d825a23 - David Zbarsky - Bug 1067701 - Implement Animation.target; r=birtles, r=bz
  1315. # [08:18] * Quits: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1316. # [08:19] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  1317. # [08:19] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1318. # [08:20] * Joins: m_kato (m_kato@moz-C286AD9A.bitcat.net)
  1319. # [08:21] * heycam|away is now known as heycam
  1320. # [08:21] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  1321. # [08:21] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  1322. # [08:22] * Joins: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net)
  1323. # [08:22] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  1324. # [08:22] * Joins: CristinaM (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1325. # [08:23] * Quits: spohl (Adium@1F0DBA3D.BAA50413.AB64B967.IP) (Quit: Leaving.)
  1326. # [08:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f84821d9b7ce - Nick Alexander - Bug 1065306 - Part 1: s/suggestedsites-json/suggestedsites/. r=mshal
  1327. # [08:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d305d2d5576a - Nick Alexander - Bug 1065306 - Part 2: Extract generated_file_template. r=mshal
  1328. # [08:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0b6eef1ff9cd - Nick Alexander - Bug 1065306 - Part 3: Extract DotProperties helper. r=lucasr,mshal
  1329. # [08:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f2901a47e53d - Nick Alexander - Bug 1065306 - Part 4: Write localized res/raw-*/browsersearch.json. r=mshal
  1330. # [08:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/fa409031b723 - Nick Alexander - Bug 1065306 - Post: Handle utf-8 files in DotProperties. r=gps
  1331. # [08:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e5c4d68db526 - Nick Alexander - Bug 1038354 - Exit editing mode before quick-switching to tab. r=lucasr
  1332. # [08:28] * vikash-afk is now known as vikash
  1333. # [08:30] * vikash is now known as vikash-afk
  1334. # [08:31] <Tomcat|sheriffduty> sorry complete tree closures :(
  1335. # [08:33] * Joins: sir_none (Thunderbir@5F87E885.DDC54EB2.170057B8.IP)
  1336. # [08:33] * nsm is now known as nsm|away
  1337. # [08:33] * Joins: wolfiR (wolfiR@moz-F7D46008.dip0.t-ipconnect.de)
  1338. # [08:33] * Quits: wolfiR (wolfiR@moz-F7D46008.dip0.t-ipconnect.de) (Quit: wolfiR)
  1339. # [08:34] * Joins: Honza (chatzilla@514D186.F3BBB17D.144F44FA.IP)
  1340. # [08:36] * Joins: myk (myk@56F4D06C.3A3FC598.895E8C9.IP)
  1341. # [08:36] * Quits: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP) (Quit: mixedpuppy)
  1342. # [08:36] * Joins: Rik|afk (rik@moz-E813DFA5.fbx.proxad.net)
  1343. # [08:36] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/baaa0c3ab8fd - Cervantes Yu - Bug 1051633: Make sure magic file descriptors in the content process will not be taken for other uses. r=khuey, a=bajaj
  1344. # [08:36] * Joins: Dexter (chatzilla@moz-870C3EA4.retail.telecomitalia.it)
  1345. # [08:37] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1346. # [08:37] * Joins: mukilan (mukilan@9964C1B8.4CC1D574.520CDC98.IP)
  1347. # [08:39] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  1348. # [08:39] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1349. # [08:41] * Quits: Tomcat|sheriffduty (Tomcat@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  1350. # [08:41] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  1351. # [08:41] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Ping timeout)
  1352. # [08:44] * Joins: Tomcat (Tomcat@moz-DB4A9C19.scl3.mozilla.com)
  1353. # [08:44] * Tomcat is now known as Tomcat|sheriffduty
  1354. # [08:44] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  1355. # [08:46] * Quits: smontagu (chatzilla@moz-5E837974.red.bezeqint.net) (Ping timeout)
  1356. # [08:46] * Quits: tomasz (Adium@CC93B76.397D472B.B8C5454C.IP) (Quit: Leaving.)
  1357. # [08:49] * Joins: smontagu (chatzilla@moz-211A8ABE.red.bezeqint.net)
  1358. # [08:50] * Quits: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP) (Ping timeout)
  1359. # [08:52] <kk1fff> I am building ice emulator on wheezy, but linker says that it cannot find compitable libGL.so.
  1360. # [08:52] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Ping timeout)
  1361. # [08:53] <kk1fff> anyone had seen this issue before?
  1362. # [08:54] * Joins: maxli (maxli@moz-F47DD19B.student.cs.uwaterloo.ca)
  1363. # [08:57] * Joins: scravag (Adium@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1364. # [08:58] <Callek> build fire emulator instead, ice is too cold
  1365. # [08:58] <Callek> [/troll] sorry
  1366. # [08:59] * Joins: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP)
  1367. # [09:00] * Joins: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP)
  1368. # [09:00] * Joins: avaida (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1369. # [09:02] * Quits: gakiwate (gakiwate@moz-364873F6.san.res.rr.com) (Input/output error)
  1370. # [09:02] * Joins: Ms2ger (Ms2ger@9E7F1259.CA89C307.187A1082.IP)
  1371. # [09:02] * Joins: gabor (gabor@moz-95CF971E.net-tv.hu)
  1372. # [09:03] * Quits: Tomcat|sheriffduty (Tomcat@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  1373. # [09:04] * Joins: Tomcat (Tomcat@moz-DB4A9C19.scl3.mozilla.com)
  1374. # [09:04] * Joins: tomasz (Adium@CC93B76.397D472B.B8C5454C.IP)
  1375. # [09:04] * Tomcat is now known as Tomcat|sheriffduty
  1376. # [09:06] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1377. # [09:06] * Joins: tzimmermann (tzimmerman@moz-81435106.pools.vodafone-ip.de)
  1378. # [09:07] * Joins: edmorley (uid27002@moz-5F4AA75A.irccloud.com)
  1379. # [09:07] * bobowen|afk is now known as bobowen
  1380. # [09:07] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  1381. # [09:07] * Quits: luisbg (luisbg@moz-C54443AD.baconseed.org) (Ping timeout)
  1382. # [09:08] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  1383. # [09:08] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  1384. # [09:08] <Ms2ger> glandium++
  1385. # [09:09] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1386. # [09:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/8a221e7030b1 - Victor Porof - No Bug - Fix indentation on a line introduced in bug 1061653, r=me
  1387. # [09:09] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1388. # [09:09] * ChanServ sets mode: +o roc
  1389. # [09:10] * Quits: myk (myk@56F4D06C.3A3FC598.895E8C9.IP) (Ping timeout)
  1390. # [09:12] * Joins: ddamjano (Instantbir@1353B85B.E2FAE8EF.FE3ECA2F.IP)
  1391. # [09:13] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  1392. # [09:13] * Quits: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net) (Client exited)
  1393. # [09:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d1ff54346db5 - Victor Porof - No Bug - Changeset 8a221e7030b1 was empty; Actually fix indentation on a line introduced in bug 1061653, r=me DONTBUILD
  1394. # [09:13] * Ms2ger whacks victorporof
  1395. # [09:14] <victorporof> whoops
  1396. # [09:14] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  1397. # [09:14] * Joins: flaviu (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1398. # [09:14] * Quits: jdm (jdm@moz-7276981B.dsl.teksavvy.com) (Quit: )
  1399. # [09:14] <glandium> Ms2ger: add_tier_dir?
  1400. # [09:14] <Ms2ger> Yep
  1401. # [09:16] * Joins: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net)
  1402. # [09:17] * pmoore|away is now known as pmoore
  1403. # [09:18] * Quits: maxli (maxli@moz-F47DD19B.student.cs.uwaterloo.ca) (Quit: Leaving.)
  1404. # [09:20] <glandium> is it me or ld's --undefined option is useless?
  1405. # [09:20] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  1406. # [09:21] <Ms2ger> glandium, and I'm glad to see that DIRS.remove('stumbler') go too :)
  1407. # [09:21] * Parts: scravag (Adium@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1408. # [09:21] * Joins: boris_pc (boris@moz-99690620.hinet-ip.hinet.net)
  1409. # [09:21] * Quits: boris_pc (boris@moz-99690620.hinet-ip.hinet.net) (Connection reset by peer)
  1410. # [09:25] * Quits: Avasz (quassel@A34AD40A.9B6A1DB6.4D6093D7.IP) (Ping timeout)
  1411. # [09:25] * Joins: espadrine` (ttyl@moz-6ECBC304.w92-128.abo.wanadoo.fr)
  1412. # [09:26] * Joins: Avasz (quassel@A34AD40A.9B6A1DB6.4D6093D7.IP)
  1413. # [09:27] * Joins: Archaeopteryx (itsme@moz-BDC7FC9D.cust.telecolumbus.net)
  1414. # [09:28] * Joins: darktrojan (geoff@moz-26A412B5.dsl.telstraclear.net)
  1415. # [09:30] * Joins: twi (Adium@moz-11C903EE.cust.vodafonedsl.it)
  1416. # [09:31] * Joins: boris_pc (boris@moz-E37F359D.hinet-ip.hinet.net)
  1417. # [09:31] * Quits: adesst (adesanto@691D05D8.C67CCEE5.41E10BD5.IP) (Connection reset by peer)
  1418. # [09:31] * Joins: adesst (adesanto@691D05D8.C67CCEE5.41E10BD5.IP)
  1419. # [09:31] * Joins: zimio (zimio@moz-D52819E1.mullvad.net)
  1420. # [09:32] * Quits: mchen (chatzilla@moz-E37F359D.hinet-ip.hinet.net) (Client exited)
  1421. # [09:33] * Joins: luisbg (luisbg@moz-C54443AD.baconseed.org)
  1422. # [09:33] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1423. # [09:33] * Joins: gakiwate (gakiwate@moz-364873F6.san.res.rr.com)
  1424. # [09:33] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1425. # [09:33] * ChanServ sets mode: +o roc
  1426. # [09:34] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  1427. # [09:35] * Joins: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net)
  1428. # [09:36] * Joins: RealRaven (Thunderbir@8DB7637F.3D87C2A.C3498625.IP)
  1429. # [09:37] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1430. # [09:37] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1431. # [09:37] * ChanServ sets mode: +o roc
  1432. # [09:38] * Quits: smontagu (chatzilla@moz-211A8ABE.red.bezeqint.net) (Ping timeout)
  1433. # [09:38] * Joins: lth (lth@C3CF3668.251DEEED.18DB33F7.IP)
  1434. # [09:38] * Quits: Optimizer (Optimizer@C08B129E.F49FA74B.D2D1FAF0.IP) (Ping timeout)
  1435. # [09:38] <Callek> Bas: glandium: so any advice for Bug 1069114 would be greatly appreciated ---- greatly
  1436. # [09:39] <Callek> as in, I'll buy you beer in december
  1437. # [09:39] * mattwoodrow is now known as mattwoodrow|away
  1438. # [09:39] * Joins: smontagu (chatzilla@moz-747C1BA1.red.bezeqint.net)
  1439. # [09:40] * Quits: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net) (Client exited)
  1440. # [09:41] * Quits: gakiwate (gakiwate@moz-364873F6.san.res.rr.com) (Ping timeout)
  1441. # [09:42] <glandium> Callek: obviously, you're still building d3d11 code...
  1442. # [09:43] <Callek> glandium: well, the define is not specified, so yea --- theres that
  1443. # [09:43] * nthomas|away is now known as nthomas
  1444. # [09:44] <glandium> Callek: did you remove it from the three locations?
  1445. # [09:44] <Callek> glandium: yep
  1446. # [09:44] * Joins: Jan\ (kvirc@D8D19A17.1373B935.529AC0B9.IP)
  1447. # [09:45] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1448. # [09:45] <glandium> Callek: what does MOZ_HAS_WINSDK_WITH_D3D say in autoconf.mk?
  1449. # [09:45] <Callek> glandium: https://callek.pastebin.mozilla.org/6686617
  1450. # [09:45] * Joins: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP)
  1451. # [09:45] <Callek> (err for first Q)
  1452. # [09:45] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1453. # [09:45] * ChanServ sets mode: +o roc
  1454. # [09:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c3fc41feeb22 - Nick Lebedev - Bug 1055773 - Move hasAttributes method from Node to Element. r=bz
  1455. # [09:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/34519185fe24 - Ting-Yu Chou - Bug 1064800 - Catch exception from sending message to prevent interrupting execution. r=khuey
  1456. # [09:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fb0d1cc20298 - Alexandre Lissy - Bug 993011 - Update eisting Gaia apps fields. r=fabrice
  1457. # [09:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/366b01141df5 - Anuj Agarwal - Bug 791777 - Replaced NS_finite() with mozilla::IsFinite. r=froydnj
  1458. # [09:46] <glandium> Callek: could you paste the output from configure?
  1459. # [09:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0a8b7e2db5fd - Andrew Osmond - Bug 1059101 - Fix handling of buffer underrun causing assert failures in debug builds. r=roc
  1460. # [09:47] <Callek> glandium: I can't from this manual run for configure, but I can from another run
  1461. # [09:47] <Callek> glandium: this is explicitly *not* using the win8 SDK, to be clear
  1462. # [09:47] <glandium> Callek: and configure is likely being an ass
  1463. # [09:47] * Quits: tomasz (Adium@CC93B76.397D472B.B8C5454C.IP) (Quit: Leaving.)
  1464. # [09:47] * Joins: yliao (yliao@moz-99690620.hinet-ip.hinet.net)
  1465. # [09:48] <glandium> Callek: how about MOZ_HAS_WINSDK_WITH_D3D in autoconf.mk?
  1466. # [09:49] <Callek> glandium: full autoconf.mk (complete with newlines from terminal wrap) https://callek.pastebin.mozilla.org/6686639
  1467. # [09:49] * Quits: yliao (yliao@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1468. # [09:50] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1469. # [09:50] * Quits: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1470. # [09:50] * Quits: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP) (Quit: mixedpuppy)
  1471. # [09:50] <glandium> Callek: so, MOZ_HAS_WINSDK_WITH_D3D is in emptyvars.mk?
  1472. # [09:51] <Callek> glandium: full configure run https://callek.pastebin.mozilla.org/6686640
  1473. # [09:51] <Callek> glandium: where is emptyvars.mk?
  1474. # [09:51] <glandium> Callek: next to autoconf.mk
  1475. # [09:51] * Joins: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net)
  1476. # [09:52] <Callek> glandium: emptyvars.mk https://callek.pastebin.mozilla.org/6686669
  1477. # [09:52] <glandium> Callek: what version is that?
  1478. # [09:52] <Callek> beta
  1479. # [09:53] * Joins: mikeratcliffe (Adium@514D186.F3BBB17D.144F44FA.IP)
  1480. # [09:53] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1481. # [09:53] <Callek> glandium: pretty sure we're hitting on trunk and aurora as well (I can verify if you need)
  1482. # [09:53] * Quits: nacerix (Instantbir@moz-44F94ACD.blueline.mg) (Ping timeout)
  1483. # [09:53] * heycam is now known as heycam|away
  1484. # [09:53] * Joins: nacerix (Instantbir@moz-44F94ACD.blueline.mg)
  1485. # [09:53] * Joins: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net)
  1486. # [09:53] <glandium> Callek: well, your configure output is impossible with trunk
  1487. # [09:53] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1488. # [09:53] * ChanServ sets mode: +o roc
  1489. # [09:54] <glandium> ah, wasn't looking at the right place
  1490. # [09:55] <Callek> aurora I'm getting: e:\builds\slave\c-aurora-w32\build\mozilla\gfx\skia\trunk\src\ports\SkTypeface_win_dw.h(20) : fatal error C1083: Cannot open include file: 'dwrite_1.h': No such file or directory
  1491. # [09:55] <Callek> which seems similar
  1492. # [09:56] <Callek> trunk is same as aurora
  1493. # [09:56] <glandium> Callek: https://bugzilla.mozilla.org/show_bug.cgi?id=1053652
  1494. # [09:56] * miketaylr is now known as zz_miketaylr
  1495. # [09:56] <glandium> but that's for skia, not angle
  1496. # [09:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b2420771f64b - JW Wang - Bug 994292 - Call SpecialPowers.pushPermissions() to ensure permission change is completed before continuing the rest of the tests. r=baku
  1497. # [09:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5247a092fcd2 - Jan-Ivar Bruaroey - Bug 1033885 - minor refactor of MediaManager::GetUserMedia to figure out privileged state itself. r=jesup
  1498. # [09:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/3b0e81a6e214 - Gijs Kruitbosch - Bug 1057166 - move FHR reporting out of docshell and fix test to work in e10s, r=bz
  1499. # [09:56] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1500. # [09:57] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1501. # [09:57] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1502. # [09:57] * ChanServ sets mode: +o roc
  1503. # [09:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/5d0c25294add - Mark Banner - Follow-up to bug 1000240 Fix the generated conversation.js file, missed during bitrot. rs=nperriault
  1504. # [09:58] <glandium> Callek: https://bugzilla.mozilla.org/show_bug.cgi?id=1037667
  1505. # [09:59] <glandium> Callek: so your problem on beta is ^
  1506. # [09:59] <glandium> Callek: your problem on aurora is the previous one i pasted
  1507. # [09:59] <Callek> ahhhh
  1508. # [10:00] <Callek> glandium: any clue if both patches are required?
  1509. # [10:00] * Quits: victorporof (victorporo@C6EE648A.F0598F12.7E5C23C9.IP) (Quit: victorporof)
  1510. # [10:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e7c3be44c703 - Gabor Krizsanits - Bug 1061469 - Part 1: Cyclic test for Imports 1. r=mrbkap
  1511. # [10:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/17c54acc6645 - Gabor Krizsanits - Bug 1061469 - Part 2: ImportManager::AddLoaderWithNewURI should only return main referrers. r=mrbkap
  1512. # [10:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/27f8d501cef5 - Gabor Krizsanits - Bug 1061469 - Part 3: Cyclic test for Imports 2. r=mrbkap
  1513. # [10:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1008e478d100 - Gabor Krizsanits - Bug 1061469 - part 4: Cyclic test for Imports 3. r=mrbkap
  1514. # [10:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/01ead7a7bb5d - Gabor Krizsanits - Bug 1061469 - part 5: Fixing up update for Imports. r=mrbkap
  1515. # [10:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/62486f51f316 - Gabor Krizsanits - Bug 1061469 - part 6: Cyclic test for Imports 4. r=mrbkap
  1516. # [10:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3c44a02925cb - Gabor Krizsanits - Bug 1061469 - part 7: Cyclic test for Imports 5. r=mrbkap
  1517. # [10:02] <glandium> Callek: there's only one landing in that bug
  1518. # [10:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7c3db413f9da - Gabor Krizsanits - Bug 1061469 - part 8: Encoding for Imports. r=mrbkap
  1519. # [10:02] <Callek> ooo duh yea
  1520. # [10:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8378f26b0730 - Gabor Krizsanits - Bug 1061469 - part 9: defaultView should be null for imports. r=mrbkap
  1521. # [10:02] * Callek was just about to correct himself
  1522. # [10:02] * nthomas is now known as nthomas|away
  1523. # [10:02] <glandium> Callek: presumably, they're the same patch, one with -w, one without
  1524. # [10:03] <glandium> the "Please note this file is autogenerated from generate_mozbuild.py, so do not modify it directly" note is funny
  1525. # [10:03] <glandium> and completely ignored
  1526. # [10:04] <glandium> (which makes me think that comment is actually false)
  1527. # [10:04] * Quits: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com) (Input/output error)
  1528. # [10:05] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  1529. # [10:05] * Joins: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp)
  1530. # [10:05] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  1531. # [10:05] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1532. # [10:06] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  1533. # [10:07] * Quits: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com) (Ping timeout)
  1534. # [10:07] <Callek> yea *that* comment had me worried here
  1535. # [10:07] * mattwoodrow|away is now known as mattwoodrow
  1536. # [10:07] * Quits: twi (Adium@moz-11C903EE.cust.vodafonedsl.it) (Quit: Leaving.)
  1537. # [10:07] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1538. # [10:07] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Ping timeout)
  1539. # [10:07] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  1540. # [10:08] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  1541. # [10:09] * Joins: mwargers (mwargers@moz-AF369B35.adsl.online.nl)
  1542. # [10:09] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  1543. # [10:10] * flod is now known as flod|afk
  1544. # [10:10] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  1545. # [10:11] * Quits: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Quit: Leaving.)
  1546. # [10:11] * Quits: nattokirai (nattokirai@moz-C286AD9A.bitcat.net) (Quit: nattokirai)
  1547. # [10:11] * Callek requests approval due to only-change to files and same angle version across aurora and beta
  1548. # [10:11] <Callek> I'm skeptical it will gain it, but wanted to try
  1549. # [10:12] * Joins: anki08 (bzlandfill@EB1240E7.6C3D66AE.CBC86F54.IP)
  1550. # [10:12] <kk1fff> Callek: fire emulator is a good idea, but it just too hot these days.
  1551. # [10:13] * kk1fff just found the typo: 'ice', it should be ics..
  1552. # [10:13] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1553. # [10:13] * Joins: Florent (Thunderbir@514D186.F3BBB17D.144F44FA.IP)
  1554. # [10:13] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1555. # [10:13] * ChanServ sets mode: +o roc
  1556. # [10:14] * Joins: erikvold (sid18003@moz-E77DEB21.irccloud.com)
  1557. # [10:14] <Tomcat|sheriffduty> rnewman: ping
  1558. # [10:14] <rnewman> Tomcat|sheriffduty: auto-reply: please consider replying with additional info regarding your ping. If I'm here, it's what I'll ask for next; if I'm not, I'll at least read it later.
  1559. # [10:14] <erikvold> why are all of these js files combined at compile time? https://github.com/mozilla/gecko-dev/tree/master/browser/base/content/newtab
  1560. # [10:14] * Joins: bgrins (bgrins@514D186.F3BBB17D.144F44FA.IP)
  1561. # [10:15] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  1562. # [10:15] * Ms2ger whacks rnewman
  1563. # [10:15] <Callek> glandium: I definitely owe you a beer or two, now
  1564. # [10:15] * Callek might even choose *not* to expense it
  1565. # [10:16] <Callek> glandium: thank you so so much!
  1566. # [10:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0f14e8b69354 - Matt Woodrow - Bug 1070722 - Remove DrawTargetCG::OptimizeSourceSurface since we don't get any benefit without quartz high-quality downscaling enabled. r=jrmuizel
  1567. # [10:17] * Joins: Optimizer (Optimizer@78368911.AF519A72.BE4CF869.IP)
  1568. # [10:18] * Quits: anki08 (bzlandfill@EB1240E7.6C3D66AE.CBC86F54.IP) (Quit: CGI:IRC (EOF))
  1569. # [10:20] * Quits: bkero (bkero@B09BE30.721446DC.5E72ECD5.IP) (Ping timeout)
  1570. # [10:20] * Quits: Honza (chatzilla@514D186.F3BBB17D.144F44FA.IP) (Broken pipe)
  1571. # [10:20] * Quits: Florent (Thunderbir@514D186.F3BBB17D.144F44FA.IP) (Client exited)
  1572. # [10:21] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1573. # [10:22] * Joins: Edgar (Thunderbir@moz-E37F359D.hinet-ip.hinet.net)
  1574. # [10:23] * Joins: Bebe (Bebe@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1575. # [10:25] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1576. # [10:25] * Joins: bkero (bkero@B09BE30.721446DC.5E72ECD5.IP)
  1577. # [10:25] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1578. # [10:25] * ChanServ sets mode: +o roc
  1579. # [10:26] <Callek> glandium: is your NPOTB comment a "bless, no approval needed" or a "informing approving humans"?
  1580. # [10:26] * Quits: espadrine` (ttyl@moz-6ECBC304.w92-128.abo.wanadoo.fr) (Ping timeout)
  1581. # [10:27] <glandium> Callek: it's a "i'm just saying", feel free to apply your npotb blanket approval if you want.
  1582. # [10:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d9078f1bbcbe - Nick Fitzgerald - Bug 915426 - Don't store debugging data in the global scope. r=ejpbruel
  1583. # [10:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f960230483c6 - J. Ryan Stinnett - Bug 916804 - Telemetry for WebIDE. r=mratcliffe,paul
  1584. # [10:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/138869183b29 - J. Ryan Stinnett - Bug 989168 - Disable browser_manifest_editor. r=jryans
  1585. # [10:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/692d4aebd622 - Manu Jain - Bug 1065925 - Remove code for expiring Places telemetry probes. r=mak
  1586. # [10:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/7f987505ac94 - Tomasz Kołodziejski - Bug 1051187 - "Match case" button does not refresh the number of occurences. r=mikedeboer
  1587. # [10:28] <Callek> glandium: aww damn, thought I was gonna have to owe you another beer
  1588. # [10:28] <Callek> :-P
  1589. # [10:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/8b071207a809 - David Rajchenbach-Teller - Bug 1069577 - Transfering values with a PromiseWorker. r=froydnj
  1590. # [10:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/0d02a083b7bb - B2G Bumper Bot - Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
  1591. # [10:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2ba11e543d1c - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1592. # [10:29] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1593. # [10:29] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1594. # [10:29] * ChanServ sets mode: +o roc
  1595. # [10:31] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Quit: vicamo)
  1596. # [10:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/02b0fb265642 - Carsten "Tomcat" Book - Backed out changeset 9ac001517068 (bug 1045053)
  1597. # [10:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/be492ccdee04 - Carsten "Tomcat" Book - Backed out changeset 4782b099ef93 (bug 1045053)
  1598. # [10:31] * Quits: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Connection reset by peer)
  1599. # [10:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/35490bc74c7e - Carsten "Tomcat" Book - Backed out changeset f20d3ef82554 (bug 1045053) for Android rc* test failures
  1600. # [10:32] * Quits: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp) (Quit: Konversation terminated!)
  1601. # [10:33] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1602. # [10:33] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  1603. # [10:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/13740fca92f2 - William Chen - Bug 1073043 - Fix mouse events trapped in shadow DOM. r=smaug
  1604. # [10:33] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1605. # [10:33] * ChanServ sets mode: +o roc
  1606. # [10:34] * Quits: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net) (Ping timeout)
  1607. # [10:35] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: bogdan_maris)
  1608. # [10:36] * Quits: julienw_afk (julienw@moz-E38F5B6A.everlong.org) (Quit: ZNC - http://znc.sourceforge.net)
  1609. # [10:36] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1610. # [10:37] * Quits: jduell_bbl (jduell@moz-D7F78D4E.hsd1.wa.comcast.net) (Ping timeout)
  1611. # [10:37] * Joins: julienw_afk (julienw@moz-E38F5B6A.everlong.org)
  1612. # [10:38] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1613. # [10:38] * Joins: jacek (jacek@moz-ECAAA1A8.psi.wroc.pl)
  1614. # [10:41] * Joins: Florent (Thunderbir@514D186.F3BBB17D.144F44FA.IP)
  1615. # [10:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e0510d911a11 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1616. # [10:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/35c02faae29b - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1617. # [10:44] * Joins: alice0775 (Mibbit@moz-7128DD01.bbtec.net)
  1618. # [10:45] * ewong|sleep is now known as ewong
  1619. # [10:45] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1620. # [10:45] * Joins: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP)
  1621. # [10:45] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1622. # [10:45] * ChanServ sets mode: +o roc
  1623. # [10:45] * Joins: Honza (chatzilla@514D186.F3BBB17D.144F44FA.IP)
  1624. # [10:46] * Joins: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net)
  1625. # [10:51] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1626. # [10:52] * Joins: twi (Adium@moz-56EAEB28.retail.telecomitalia.it)
  1627. # [10:52] * Joins: tromey (tromey@514D186.F3BBB17D.144F44FA.IP)
  1628. # [10:53] * Quits: gabor (gabor@moz-95CF971E.net-tv.hu) (Ping timeout)
  1629. # [10:53] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1630. # [10:53] * zz_miketaylr is now known as miketaylr
  1631. # [10:53] * miketaylr is now known as zz_miketaylr
  1632. # [10:53] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  1633. # [10:53] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1634. # [10:53] * ChanServ sets mode: +o roc
  1635. # [10:59] * Joins: mak (uid24946@moz-31ABA2C0.irccloud.com)
  1636. # [11:00] * Joins: gozala (uid5923@moz-5F4AA75A.irccloud.com)
  1637. # [11:01] * mattwoodrow is now known as mattwoodrow|away
  1638. # [11:03] * Quits: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com) (Input/output error)
  1639. # [11:04] * Quits: Avasz (quassel@A34AD40A.9B6A1DB6.4D6093D7.IP) (Ping timeout)
  1640. # [11:05] * Quits: flo-retina (Instantbir@moz-25D49B0E.ip-37-59-48.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  1641. # [11:07] * Joins: gabor (gabor@moz-95CF971E.net-tv.hu)
  1642. # [11:08] <sewardj_> nbp: ping
  1643. # [11:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4bff4b0ed99c - Bobby Holley - Bug 1074863 - Handle named constructors which have DOMXrayTraits while being simultaneously JSProto_Function. r=peterv
  1644. # [11:09] * Quits: Archaeopteryx (itsme@moz-BDC7FC9D.cust.telecolumbus.net) (Quit: Goodbye)
  1645. # [11:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/01a525d9c6c2 - Blair McBride - Bug 1073846 - Wrong URL loads after autofill of a hostname that matches a search engine. r=mak
  1646. # [11:10] <glandium> sewardj_: hey, since you're around, i needinfo'ed you on bug 788974 a while ago ;)
  1647. # [11:11] <sewardj_> glandium: yes (about the profiling) I'll look ay it today
  1648. # [11:11] <sewardj_> at
  1649. # [11:11] <glandium> sewardj_: awesome, thanks
  1650. # [11:11] <sewardj_> glandium: sorry to be slow.
  1651. # [11:12] <glandium> sewardj_: np
  1652. # [11:14] <sewardj_> roc: could I get your opinion on 1074697 comment 6 ? I think it's a 1-minuter
  1653. # [11:15] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1654. # [11:15] * Joins: jimb (user@88F51059.F3BBB17D.144F44FA.IP)
  1655. # [11:15] <past> glandium: where should I define an aurora-specific env var so that it can be used by the preprocessor in js files?
  1656. # [11:15] * Quits: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  1657. # [11:15] <past> glandium: browser/branding/aurora/configure.sh doesn't seem to do it
  1658. # [11:15] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1659. # [11:15] * ChanServ sets mode: +o roc
  1660. # [11:16] <glandium> past: using branding for that is wrong anyways. Why would you want something in aurora but not nightly?
  1661. # [11:16] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1662. # [11:17] <past> hm
  1663. # [11:18] * Quits: sewardj_ (sewardj@moz-B11CE24B.dip0.t-ipconnect.de) (Quit: Konversation terminated!)
  1664. # [11:19] * Quits: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1665. # [11:19] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1666. # [11:19] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  1667. # [11:19] * Joins: espadrine` (ttyl@moz-87D32D93.w80-12.abo.wanadoo.fr)
  1668. # [11:19] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1669. # [11:19] * ChanServ sets mode: +o roc
  1670. # [11:21] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  1671. # [11:21] * Joins: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net)
  1672. # [11:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c70ca7e54741 - Jim Blandy - Bug 1075564: Give JS::ubi::Node its implicit constructor back, with the right annotation this time. r=luke
  1673. # [11:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a59c2ddcf04c - Jim Blandy - Bug 1075591: Make js::gc::TenuredCell::asTenured return a TenuredCell &, not a TenuredCell *. r=terrence
  1674. # [11:23] * Parts: arai (arai@moz-3E6D124.fukuoka.ocn.ne.jp)
  1675. # [11:24] * Fallen|away is now known as Fallen
  1676. # [11:24] * Joins: sewardj (sewardj@moz-B11CE24B.dip0.t-ipconnect.de)
  1677. # [11:24] * Quits: timdream (timdream@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1678. # [11:25] <nbp> sewardj: pong
  1679. # [11:26] * Joins: jduell_bbl (jduell@moz-D7F78D4E.hsd1.wa.comcast.net)
  1680. # [11:26] * Joins: timdream (timdream@moz-99690620.hinet-ip.hinet.net)
  1681. # [11:26] <sewardj> nbp: do you know who might be a good person for 1075572 ? Looks like it might be some GG/CC shutdown race or similar problem
  1682. # [11:26] * Joins: flo-retina (Instantbir@moz-25D49B0E.ip-37-59-48.eu)
  1683. # [11:27] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1684. # [11:27] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1685. # [11:27] * ChanServ sets mode: +o roc
  1686. # [11:27] * Quits: darktrojan (geoff@moz-26A412B5.dsl.telstraclear.net) (Ping timeout)
  1687. # [11:28] * mdoglio|pto is now known as mdoglio
  1688. # [11:28] <nbp> sewardj: maybe terrence / jonco / mccr8
  1689. # [11:29] * Quits: njn (njn@moz-BE91A9CC.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 35.0a1/20140928154952])
  1690. # [11:29] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  1691. # [11:30] * Quits: jduell_bbl (jduell@moz-D7F78D4E.hsd1.wa.comcast.net) (Ping timeout)
  1692. # [11:30] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1693. # [11:30] * Joins: darktrojan (geoff@moz-26A412B5.dsl.telstraclear.net)
  1694. # [11:33] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1695. # [11:33] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1696. # [11:33] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1697. # [11:33] * ChanServ sets mode: +o roc
  1698. # [11:35] * Joins: harth (harth@88F51059.F3BBB17D.144F44FA.IP)
  1699. # [11:37] * Joins: robertbindar (Thunderbir@moz-64389791.eregie.pub.ro)
  1700. # [11:39] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1701. # [11:39] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1702. # [11:39] * ChanServ sets mode: +o roc
  1703. # [11:40] * flod|afk is now known as flod
  1704. # [11:41] <sewardj> nbp: thx
  1705. # [11:42] * Quits: nrc (nrc@8F315326.79BBC65A.D0D038FD.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 35.0a1/20141001030205])
  1706. # [11:46] * Joins: njn (chatzilla@moz-BE91A9CC.dyn.iinet.net.au)
  1707. # [11:46] * Quits: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net) (Ping timeout)
  1708. # [11:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c840d5b6e55f - Mike de Boer - Backed out changeset b26c709330d6 (bug 1069962). r=paolo.
  1709. # [11:46] * Quits: robertbindar (Thunderbir@moz-64389791.eregie.pub.ro) (Ping timeout)
  1710. # [11:46] * Joins: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net)
  1711. # [11:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9f9bbf84c3e8 - Jim Blandy - Bug 1074994: Implement Debugger.Object.prototype.isArrowFunction. r=sfink
  1712. # [11:47] * Joins: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net)
  1713. # [11:48] * Quits: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net) (Ping timeout)
  1714. # [11:49] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1715. # [11:49] * baku|away is now known as baku
  1716. # [11:49] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1717. # [11:49] * ChanServ sets mode: +o roc
  1718. # [11:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/02b0fb265642 - Carsten "Tomcat" Book - Backed out changeset 9ac001517068 (bug 1045053)
  1719. # [11:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/be492ccdee04 - Carsten "Tomcat" Book - Backed out changeset 4782b099ef93 (bug 1045053)
  1720. # [11:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/35490bc74c7e - Carsten "Tomcat" Book - Backed out changeset f20d3ef82554 (bug 1045053) for Android rc* test failures
  1721. # [11:53] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1722. # [11:53] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1723. # [11:53] * ChanServ sets mode: +o roc
  1724. # [11:56] * Joins: m_gol (m_gol@moz-7C4F10C9.neoplus.adsl.tpnet.pl)
  1725. # [11:56] * Fallen is now known as Fallen|away
  1726. # [11:56] * Quits: darktrojan (geoff@moz-26A412B5.dsl.telstraclear.net) (Quit: darktrojan)
  1727. # [11:57] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1728. # [11:57] * Joins: scravag (Adium@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1729. # [11:57] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1730. # [11:57] * ChanServ sets mode: +o roc
  1731. # [11:57] * Quits: atsai (atsai@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1732. # [11:58] * Quits: nacerix (Instantbir@moz-44F94ACD.blueline.mg) (Ping timeout)
  1733. # [11:59] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1734. # [11:59] * ChanServ sets mode: +o smaug
  1735. # [12:01] * Quits: schien (anonymous@moz-E37F359D.hinet-ip.hinet.net) (Quit: sleep)
  1736. # [12:01] * Quits: jrgill (jrgill@moz-9FD6CA8F.stny.res.rr.com) (Connection reset by peer)
  1737. # [12:02] * Joins: jrgill (jrgill@moz-9FD6CA8F.stny.res.rr.com)
  1738. # [12:03] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1739. # [12:03] * Quits: fabrice (fabrice@495A1E63.5994028D.9CA62458.IP) (Ping timeout)
  1740. # [12:03] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1741. # [12:03] * ChanServ sets mode: +o roc
  1742. # [12:04] * Bebe is now known as Bebe|food
  1743. # [12:04] * Joins: idwer (irc@moz-67B6410D.adsl.online.nl)
  1744. # [12:04] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  1745. # [12:07] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Ping timeout)
  1746. # [12:10] * Quits: jw_wang (jw_wang@moz-E37F359D.hinet-ip.hinet.net) (Quit: 暫離)
  1747. # [12:11] * Quits: Rik|afk (rik@moz-E813DFA5.fbx.proxad.net) (Input/output error)
  1748. # [12:13] * Joins: fabrice (fabrice@495A1E63.5994028D.9CA62458.IP)
  1749. # [12:14] * Quits: Ms2ger (Ms2ger@9E7F1259.CA89C307.187A1082.IP) (Ping timeout)
  1750. # [12:14] * whimboo is now known as whimboo|afk
  1751. # [12:14] * Quits: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP) (Ping timeout)
  1752. # [12:17] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1753. # [12:17] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1754. # [12:17] * ChanServ sets mode: +o roc
  1755. # [12:18] * pmoore is now known as pmoore|buildduty
  1756. # [12:19] * Quits: RealRaven (Thunderbir@8DB7637F.3D87C2A.C3498625.IP) (Quit: RealRaven)
  1757. # [12:19] * Joins: RealRaven (Thunderbir@8DB7637F.3D87C2A.C3498625.IP)
  1758. # [12:20] * pmoore|buildduty is now known as pmoore|away
  1759. # [12:23] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1760. # [12:23] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1761. # [12:23] * ChanServ sets mode: +o roc
  1762. # [12:26] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  1763. # [12:28] * Quits: scravag (Adium@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: Leaving.)
  1764. # [12:29] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  1765. # [12:29] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1766. # [12:29] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1767. # [12:29] * ChanServ sets mode: +o roc
  1768. # [12:32] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1769. # [12:33] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1770. # [12:33] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1771. # [12:33] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1772. # [12:33] * ChanServ sets mode: +o roc
  1773. # [12:35] * Joins: nacerix (Instantbir@32FFF58C.D8EFF2FE.4A192F9A.IP)
  1774. # [12:36] <Tomcat|sheriffduty> gabor: ping
  1775. # [12:36] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1776. # [12:39] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1777. # [12:39] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  1778. # [12:41] * Quits: brsun (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1779. # [12:41] * Quits: Morris (Morris@moz-E37F359D.hinet-ip.hinet.net) (Quit: Morris)
  1780. # [12:41] * Joins: Archaeopteryx (itsme@moz-BDC7FC9D.cust.telecolumbus.net)
  1781. # [12:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a2585324a35c - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1782. # [12:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/32c878e463ae - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1783. # [12:44] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  1784. # [12:44] * Quits: seanlin (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Quit: seanlin)
  1785. # [12:45] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1786. # [12:45] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1787. # [12:45] * ChanServ sets mode: +o roc
  1788. # [12:49] * Joins: KaiRo (robert@moz-A74B689A.adsl.highway.telekom.at)
  1789. # [12:51] * Joins: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp)
  1790. # [12:53] * Quits: ddamjano (Instantbir@1353B85B.E2FAE8EF.FE3ECA2F.IP) (Ping timeout)
  1791. # [12:53] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1792. # [12:53] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1793. # [12:53] * ChanServ sets mode: +o roc
  1794. # [12:55] * Quits: mikeratcliffe (Adium@514D186.F3BBB17D.144F44FA.IP) (Quit: Leaving.)
  1795. # [12:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/1d4b89d2fe4a - Mike de Boer - Bug 1069816: implement Google contacts import class. r=abr
  1796. # [12:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e14db252186c - Mike de Boer - Bug 1069816: add unit tests for the GoogleImporter class. r=abr
  1797. # [12:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/eee08fb2a4a4 - Mike de Boer - Bug 1069816: Enable import button in the contacts list. r=abr
  1798. # [12:56] * Quits: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net) (Client exited)
  1799. # [12:57] * Quits: jacek (jacek@moz-ECAAA1A8.psi.wroc.pl) (Ping timeout)
  1800. # [12:58] * Joins: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net)
  1801. # [12:59] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1802. # [12:59] * Joins: mikeratcliffe (Adium@514D186.F3BBB17D.144F44FA.IP)
  1803. # [12:59] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1804. # [12:59] * ChanServ sets mode: +o roc
  1805. # [13:00] * Quits: bgrins (bgrins@514D186.F3BBB17D.144F44FA.IP) (Ping timeout)
  1806. # [13:00] * Joins: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP)
  1807. # [13:00] * Joins: spohl (Adium@FDC1BCA6.4CF97D1A.AB64B967.IP)
  1808. # [13:01] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Ping timeout)
  1809. # [13:01] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1810. # [13:02] * Joins: Rik|afk (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1811. # [13:02] * Quits: GPHemsley (GPHemsley@moz-DE8E5C45.hsd1.pa.comcast.net) (Input/output error)
  1812. # [13:02] * Joins: Gijs (gijs@moz-43FD6530.range86-164.btcentralplus.com)
  1813. # [13:02] * Joins: Ms2ger (Ms2ger@moz-F56FCC80.ugent.be)
  1814. # [13:03] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1815. # [13:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a39933b3becc - Cervantes Yu - Bug 1048011: fix a race condition that leaks PProcLoaderParent. r=khuey
  1816. # [13:03] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1817. # [13:03] * ChanServ sets mode: +o roc
  1818. # [13:04] <Gijs> Tomcat|sheriffduty: m-oth is still orange with test_findbar.xul failures on fx-team, looks like that was 7f987505ac94 ?
  1819. # [13:05] <Tomcat|sheriffduty> yeah
  1820. # [13:05] * Joins: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP)
  1821. # [13:05] * bobowen is now known as bobowen|afk
  1822. # [13:06] * FuzzyFox|afk is now known as FuzzyFox
  1823. # [13:06] <Tomcat|sheriffduty> Gijs: backout done
  1824. # [13:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/cd7aa281060d - Mike de Boer - Bug 1074547: improve rendering flow of contacts list. r=Niko
  1825. # [13:08] * Joins: GPHemsley (GPHemsley@moz-DE8E5C45.hsd1.pa.comcast.net)
  1826. # [13:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/1ee2c06d271f - Carsten "Tomcat" Book - Backed out changeset 7f987505ac94 (bug 1051187) for test failures
  1827. # [13:10] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Ping timeout)
  1828. # [13:11] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1829. # [13:12] * Quits: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net) (Client exited)
  1830. # [13:12] * Quits: m_gol (m_gol@moz-7C4F10C9.neoplus.adsl.tpnet.pl) (Ping timeout)
  1831. # [13:12] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  1832. # [13:12] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  1833. # [13:13] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  1834. # [13:13] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1835. # [13:13] * Joins: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net)
  1836. # [13:14] * Quits: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net) (Quit: jkitch)
  1837. # [13:15] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Ping timeout)
  1838. # [13:15] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Ping timeout)
  1839. # [13:15] * pmoore|away is now known as pmoore|buildduty
  1840. # [13:15] * Joins: Pike (chatzilla@moz-D87B7311.pool.mediaways.net)
  1841. # [13:15] * Joins: roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com)
  1842. # [13:15] * ChanServ sets mode: +o roc
  1843. # [13:18] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1844. # [13:19] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  1845. # [13:20] * FuzzyFox is now known as FuzzyFox|afk
  1846. # [13:20] * Quits: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net) (Ping timeout)
  1847. # [13:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  1848. # [13:23] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1849. # [13:25] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Ping timeout)
  1850. # [13:25] * Quits: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP) (Ping timeout)
  1851. # [13:26] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1852. # [13:27] * Joins: m_gol (m_gol@moz-B74ABD21.play-internet.pl)
  1853. # [13:28] * Quits: m_gol (m_gol@moz-B74ABD21.play-internet.pl) (Connection reset by peer)
  1854. # [13:29] * Joins: m_gol (m_gol@moz-7C4F10C9.neoplus.adsl.tpnet.pl)
  1855. # [13:29] * Quits: alice0775 (Mibbit@moz-7128DD01.bbtec.net) (Quit: http://www.mibbit.com ajax IRC Client)
  1856. # [13:31] * Joins: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP)
  1857. # [13:31] * lth is now known as lth|out
  1858. # [13:32] <@smaug> anyone on OSX?
  1859. # [13:33] * Quits: ewong (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  1860. # [13:33] * Joins: robertbindar (Thunderbir@moz-64389791.eregie.pub.ro)
  1861. # [13:34] * Joins: ewong (chatzilla@moz-8777076B.netvigator.com)
  1862. # [13:34] * Bebe|food is now known as Bebe
  1863. # [13:34] <Tomcat|sheriffduty> smaug: i'm on 10.9
  1864. # [13:34] * Quits: @roc (chatzilla@moz-3807C8B5.m.subnet.rcn.com) (Input/output error)
  1865. # [13:36] <@smaug> Tomcat|sheriffduty: blizzard was complaining copy-pasting doesn't work in FF+Googledocs
  1866. # [13:36] <@smaug> copy-pasting from gdocs to some other app in OSX
  1867. # [13:36] <@smaug> want to test?
  1868. # [13:37] <@smaug> copy-pasting does work in linux
  1869. # [13:37] * @smaug is btw quite surprised that blizzard uses osx
  1870. # [13:37] * Quits: timdream (timdream@moz-99690620.hinet-ip.hinet.net) (Quit: timdream)
  1871. # [13:38] <Pike> smaug: wfm for a google spreadsheet to mac terminal, Nightly
  1872. # [13:39] * Joins: PiresFelix (Leonardo@moz-90356C97.dynamic.adsl.gvt.net.br)
  1873. # [13:39] * Joins: ddamjano (Instantbir@1353B85B.E2FAE8EF.FE3ECA2F.IP)
  1874. # [13:39] <@smaug> k
  1875. # [13:39] <Tomcat|sheriffduty> wfm too
  1876. # [13:39] * @smaug will ask some more info from blizzared
  1877. # [13:40] <@smaug> thanks
  1878. # [13:40] <@smaug> blizzard
  1879. # [13:40] <Tomcat|sheriffduty> np
  1880. # [13:40] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1881. # [13:41] * Joins: vignesh (vignesh.sh@EF819F11.B85A69D4.DF257BE8.IP)
  1882. # [13:41] * Parts: vignesh (vignesh.sh@EF819F11.B85A69D4.DF257BE8.IP)
  1883. # [13:42] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Connection reset by peer)
  1884. # [13:42] * Joins: gakiwate (gakiwate@moz-364873F6.san.res.rr.com)
  1885. # [13:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/48caa41da8df - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  1886. # [13:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/db0394ed7d1a - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1887. # [13:44] * Quits: gakiwate (gakiwate@moz-364873F6.san.res.rr.com) (Ping timeout)
  1888. # [13:46] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1889. # [13:48] * Joins: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP)
  1890. # [13:48] * bobowen|afk is now known as bobowen
  1891. # [13:49] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1892. # [13:50] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Ping timeout)
  1893. # [13:51] * Joins: Morris (Morris@moz-AB709101.hinet-ip.hinet.net)
  1894. # [13:51] * Quits: vebb (mike@moz-A9F59665.callplus.net.nz) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  1895. # [13:52] * Quits: nacerix (Instantbir@32FFF58C.D8EFF2FE.4A192F9A.IP) (Ping timeout)
  1896. # [13:54] * Joins: jacek (jacek@moz-ECAAA1A8.psi.wroc.pl)
  1897. # [13:55] * Quits: Edgar (Thunderbir@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1898. # [13:56] * Quits: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP) (Ping timeout)
  1899. # [13:57] * Joins: vignesh (vignesh.sh@EF819F11.B85A69D4.DF257BE8.IP)
  1900. # [13:58] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  1901. # [13:59] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  1902. # [13:59] * Quits: ewong (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  1903. # [13:59] * FuzzyFox|afk is now known as FuzzyFox
  1904. # [14:00] * Joins: ckitching (ckitching@moz-C0166612.plus.com)
  1905. # [14:00] * Joins: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1906. # [14:00] * Joins: ewong (chatzilla@moz-8777076B.netvigator.com)
  1907. # [14:00] * Joins: timdream (timdream@moz-A29932FC.dynamic.hinet.net)
  1908. # [14:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b0c87b1e4e6e - Carsten "Tomcat" Book - Backed out changeset 8378f26b0730 (bug 1061469)
  1909. # [14:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/946466b93fb6 - Carsten "Tomcat" Book - Backed out changeset 7c3db413f9da (bug 1061469)
  1910. # [14:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1abc9335763e - Carsten "Tomcat" Book - Backed out changeset 3c44a02925cb (bug 1061469)
  1911. # [14:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dd4be19ee149 - Carsten "Tomcat" Book - Backed out changeset 62486f51f316 (bug 1061469)
  1912. # [14:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4116e175b2e0 - Carsten "Tomcat" Book - Backed out changeset 01ead7a7bb5d (bug 1061469)
  1913. # [14:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6ac9e415cb42 - Carsten "Tomcat" Book - Backed out changeset 1008e478d100 (bug 1061469)
  1914. # [14:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d1dfdafb5d7c - Carsten "Tomcat" Book - Backed out changeset 27f8d501cef5 (bug 1061469)
  1915. # [14:03] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Quit: Konversation terminated!)
  1916. # [14:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/28d109731c7c - Carsten "Tomcat" Book - Backed out changeset 17c54acc6645 (bug 1061469)
  1917. # [14:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8faadc76fca8 - Carsten "Tomcat" Book - Backed out changeset e7c3be44c703 (bug 1061469) for Android m-11 test failures on a CLOSED TREE
  1918. # [14:03] * Quits: ckitching (ckitching@moz-C0166612.plus.com) (Input/output error)
  1919. # [14:04] * Joins: ckitching (ckitching@moz-C0166612.plus.com)
  1920. # [14:04] * Quits: ckitching (ckitching@moz-C0166612.plus.com) (Input/output error)
  1921. # [14:05] * Joins: Sushant94 (Sushant@BF413162.7039D15E.D30E9BEF.IP)
  1922. # [14:05] * Joins: tomatoeblue (textual@7B5DB2FF.E44E5096.7022AA5C.IP)
  1923. # [14:05] * Joins: ckitching (ckitching@moz-C0166612.plus.com)
  1924. # [14:07] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  1925. # [14:09] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Ping timeout)
  1926. # [14:09] * Quits: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP) (Ping timeout)
  1927. # [14:09] * Quits: tomatoeblue (textual@7B5DB2FF.E44E5096.7022AA5C.IP) (Quit: Computer has gone to sleep.)
  1928. # [14:10] * Quits: Ms2ger (Ms2ger@moz-F56FCC80.ugent.be) (Ping timeout)
  1929. # [14:10] * Quits: jacek (jacek@moz-ECAAA1A8.psi.wroc.pl) (Ping timeout)
  1930. # [14:11] * Joins: jacek (jacek@moz-ECAAA1A8.psi.wroc.pl)
  1931. # [14:12] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1932. # [14:12] * Joins: squeakytoy (squeakytoy@7061EEAD.41CBD7B1.148A607A.IP)
  1933. # [14:12] * Joins: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP)
  1934. # [14:13] * Joins: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP)
  1935. # [14:13] * Joins: rogeliodh (Thunderbir@E9C3323D.2CDB7A81.D67CC001.IP)
  1936. # [14:14] * Joins: lpy_ (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  1937. # [14:14] * Quits: lpy (lpy@363ECC5F.6E01A51A.65042015.IP) (Ping timeout)
  1938. # [14:16] * whimboo|afk is now known as whimboo
  1939. # [14:16] * Quits: lpy_ (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Quit: Leaving...)
  1940. # [14:16] * Joins: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  1941. # [14:18] * Joins: RyanVM (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net)
  1942. # [14:18] * Quits: spohl (Adium@FDC1BCA6.4CF97D1A.AB64B967.IP) (Quit: Leaving.)
  1943. # [14:19] * Joins: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net)
  1944. # [14:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  1945. # [14:21] * Quits: bmidgley (bmidgley@moz-29B87783.hsd1.ut.comcast.net) (Ping timeout)
  1946. # [14:22] * Quits: timdream (timdream@moz-A29932FC.dynamic.hinet.net) (Quit: timdream)
  1947. # [14:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  1948. # [14:23] * Quits: m_kato (m_kato@moz-C286AD9A.bitcat.net) (Quit: Leaving...)
  1949. # [14:23] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1950. # [14:24] * jmaher|afk is now known as jmaher
  1951. # [14:24] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  1952. # [14:24] <jmaher> erahm: ping
  1953. # [14:24] * Quits: robertbindar (Thunderbir@moz-64389791.eregie.pub.ro) (Ping timeout)
  1954. # [14:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e845072de8df - Andrei Eftimie - Bug 1023790 - [manifestparser] Add support for parent link. r=hskupin, r=jmaher
  1955. # [14:26] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Quit: Konversation terminated!)
  1956. # [14:27] * Rik|afk is now known as Rik
  1957. # [14:27] * Quits: njn (chatzilla@moz-BE91A9CC.dyn.iinet.net.au) (Ping timeout)
  1958. # [14:28] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  1959. # [14:28] * sheppy-offline is now known as sheppy
  1960. # [14:30] * Quits: zimio (zimio@moz-D52819E1.mullvad.net) (Ping timeout)
  1961. # [14:35] * Joins: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP)
  1962. # [14:36] * Joins: nacerix (Instantbir@32FFF58C.D8EFF2FE.4A192F9A.IP)
  1963. # [14:38] * Quits: PiresFelix (Leonardo@moz-90356C97.dynamic.adsl.gvt.net.br) (Ping timeout)
  1964. # [14:38] * Joins: ckerschb_ (anonymous@moz-5809BBE.adsl.highway.telekom.at)
  1965. # [14:40] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Connection reset by peer)
  1966. # [14:40] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  1967. # [14:42] <jesup> smaug: haven't seen blizzard around in a while; how's he doing?
  1968. # [14:43] <@smaug> joined the dark side long ago
  1969. # [14:43] <@smaug> (FB)
  1970. # [14:44] * Quits: vignesh (vignesh.sh@EF819F11.B85A69D4.DF257BE8.IP) (Ping timeout)
  1971. # [14:44] <@smaug> he was just complaining in fb about copy-pasting being broken in recent FF
  1972. # [14:44] <@smaug> and I couldn't reproduce it
  1973. # [14:44] * Joins: myrdd (quassel@moz-65ECD17D.access.ecotel.net)
  1974. # [14:44] * Joins: PiresFelix (Leonardo@moz-90356C97.dynamic.adsl.gvt.net.br)
  1975. # [14:45] * Joins: armenzg (armenzg@moz-45D0CB1A.home3.cgocable.net)
  1976. # [14:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/af792af2f5c7 - stefanh@inbox.com - Bug 333910 - nsITheme for menu/scrollbox arrows, r=mstange,gijs
  1977. # [14:46] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Ping timeout)
  1978. # [14:48] <myrdd> Hi all, I am forking a firefox extension (xul overlay with xpcom interface) and I'm trying to run the xpcshell unit tests, but I failed so far. Is it possible to use the xpcshell for addon unit testing?
  1979. # [14:48] * Quits: nacerix (Instantbir@32FFF58C.D8EFF2FE.4A192F9A.IP) (Ping timeout)
  1980. # [14:49] * Quits: jimb (user@88F51059.F3BBB17D.144F44FA.IP) (Ping timeout)
  1981. # [14:49] * Joins: paolo (paolo@88F51059.F3BBB17D.144F44FA.IP)
  1982. # [14:49] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1983. # [14:49] * Quits: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP) (Client exited)
  1984. # [14:49] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Connection reset by peer)
  1985. # [14:50] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1986. # [14:51] <jesup> RyanVM: I'm tee'd up to push the GMP patches to aurora/beta (I know you're doing another pass later); should I push if the local build is green?
  1987. # [14:51] <RyanVM> jesup: go for it :)
  1988. # [14:54] * Joins: ahameez (ahameez@C6EC425.A929A425.DDE7AB2D.IP)
  1989. # [14:54] * Fallen|away is now known as Fallen
  1990. # [14:56] * Joins: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net)
  1991. # [14:58] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  1992. # [14:58] * Joins: ahal (ahal@moz-CD77F5E2.cpe.pppoe.ca)
  1993. # [14:58] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  1994. # [14:58] * kats|away is now known as kats
  1995. # [14:59] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Input/output error)
  1996. # [14:59] * Quits: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP) (Quit: victorporof)
  1997. # [15:00] <gabor> Tomcat: about https://bugzilla.mozilla.org/show_bug.cgi?id=1061469#c16 did those failures go after my patches were backed out? it seems unlikely to me that my patches caused them...
  1998. # [15:00] * Quits: harth (harth@88F51059.F3BBB17D.144F44FA.IP) (Connection reset by peer)
  1999. # [15:01] * Joins: harth (harth@88F51059.F3BBB17D.144F44FA.IP)
  2000. # [15:01] * Joins: Ms2ger (Ms2ger@9E7F1259.CA89C307.187A1082.IP)
  2001. # [15:01] * Joins: bjacob (bjacob@moz-CC07A754.cable.teksavvy.com)
  2002. # [15:01] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  2003. # [15:03] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  2004. # [15:03] * Joins: bmoss (bmoss@moz-54D507F.hsd1.ca.comcast.net)
  2005. # [15:03] * Quits: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net) (Ping timeout)
  2006. # [15:04] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  2007. # [15:04] * Quits: idwer (irc@moz-67B6410D.adsl.online.nl) (Ping timeout)
  2008. # [15:04] * Joins: idwer_ (irc@moz-67B6410D.adsl.online.nl)
  2009. # [15:04] <Yoric> ted: ping
  2010. # [15:05] * armenzg is now known as armenzg_brb
  2011. # [15:05] * Joins: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net)
  2012. # [15:07] * Joins: secretrobotron (secretrobo@moz-8F93AD0D.cpe.pppoe.ca)
  2013. # [15:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/161e4dbfff7d - Mats Palmgren - Bug 649849, part 1 - Make -moz-appearance:none on a combobox remove the dropdown button (for WebKit compat). r=roc
  2014. # [15:07] <Tomcat|sheriffduty> gabor: its still running https://tbpl.mozilla.org/?tree=Mozilla-Inbound&jobname=Android%202.3%20Emulator%20mozilla-inbound%20opt%20test%20mochitest-11
  2015. # [15:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e2d1b98b34e6 - Mats Palmgren - Bug 649849 - part 1b, Remove the default -moz-appearance:none for <select> in Fennec theme. r=wjohnston@mozilla.com
  2016. # [15:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f1fd436a75a1 - Mats Palmgren - Bug 1075247 - Add support for starting the iteration from the end to FlattenedChildIterator and AllChildrenIterator. r=bzbarsky
  2017. # [15:08] <Tomcat|sheriffduty> gabor: but triggered even the run before your push and that went green :(
  2018. # [15:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a36f6475b2c3 - Andrew Halberstadt - Bug 1054809 - Add ability to open support files in gtests, r=ted
  2019. # [15:08] * Quits: PiresFelix (Leonardo@moz-90356C97.dynamic.adsl.gvt.net.br) (Ping timeout)
  2020. # [15:09] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  2021. # [15:09] * Joins: PiresFelix (Leonardo@3FD18D79.DBEB44D5.1E8E695C.IP)
  2022. # [15:09] * Quits: Archaeopteryx (itsme@moz-BDC7FC9D.cust.telecolumbus.net) (Quit: Goodbye)
  2023. # [15:10] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Ping timeout)
  2024. # [15:12] * Joins: jkitch (Thunderbir@moz-E8B97250.lns21.adl2.internode.on.net)
  2025. # [15:14] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  2026. # [15:14] * Joins: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP)
  2027. # [15:15] <@ted> Yoric: pong
  2028. # [15:15] <Yoric> ted: Hi.
  2029. # [15:15] <Yoric> I had a few questions about mochitests.
  2030. # [15:15] <Yoric> browser-tests.js, more precisely
  2031. # [15:15] <Yoric> Are you the right person to ask these questions?
  2032. # [15:15] * tbsaunde is now known as tbsaunde|pto
  2033. # [15:15] <@ted> browser-tests i'm a little shaky on, but i can try
  2034. # [15:16] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  2035. # [15:16] <@ted> gavin might be a better person to ask about that specifically
  2036. # [15:16] * Joins: jdm (jdm@CAB30FBD.8F96AEA7.2D179A7D.IP)
  2037. # [15:17] * rail_away is now known as rail
  2038. # [15:17] <Yoric> Ok, thanks.
  2039. # [15:17] <Yoric> gavin: ^
  2040. # [15:17] <Yoric> ted: Fwiw, given the lack of success at landing the rejected promise patch for mochitest, I have decided to change strategy.
  2041. # [15:17] * bc|afk is now known as bc
  2042. # [15:17] <Yoric> I am going to whitelist the tests that still fail, land the patch, and then proceed.
  2043. # [15:18] * Quits: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net) (Ping timeout)
  2044. # [15:18] * Joins: luke (luke@moz-6C4B3E7.dhcp.ftwo.tx.charter.com)
  2045. # [15:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  2046. # [15:20] * Joins: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net)
  2047. # [15:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  2048. # [15:22] * Quits: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net) (Ping timeout)
  2049. # [15:24] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  2050. # [15:26] * Parts: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  2051. # [15:27] * Quits: adalucinet (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: adalucinet)
  2052. # [15:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3b20528affee - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  2053. # [15:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/90f4e08f060a - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2054. # [15:28] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/dfbd36a37290 - Karl Tomlinson - Bug 1074765 - Test PeriodicWave output. a=abillings
  2055. # [15:28] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/67ba7d820ddf - Karl Tomlinson - Bug 1074765 - Move const periodicWaveSize multiplier out of loop. r=rillian, a=abillings
  2056. # [15:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/aaa0553c45c6 - Karl Tomlinson - Bug 1074765 - Increment phase after sampling to begin PeriodicWave at phase = 0. r=rillian, a=abillings
  2057. # [15:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/560bb9f18e5a - Karl Tomlinson - Bug 1074765 - Use greater weight for nearer sample in PeriodicWave interpolation. r=rillian, a=abillings
  2058. # [15:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/7a21538bedac - Karl Tomlinson - Bug 1012609 - Improve PeriodicWave phase-wrapping logic. r=rillian, a=abillings
  2059. # [15:29] <Tomcat|sheriffduty> gabor: m11 test went green on the backout
  2060. # [15:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/1930a7b3c014 - Vladimir Vukicevic - Bug 1037667 - Update generated ANGLE moz.build files to fix DX SDK build issues. r=jrmuizel, a=sledru
  2061. # [15:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/abc995cad178 - Bas Schouten - Bug 1060736 - Disable all acceleration on HD 3000 for driver versions 2321 or lower. r=nical, a=sledru
  2062. # [15:29] * catlee-away is now known as catlee
  2063. # [15:29] * Joins: zimio (zimio@moz-D52819E1.mullvad.net)
  2064. # [15:30] * Joins: mstange (uid15727@moz-31ABA2C0.irccloud.com)
  2065. # [15:31] <@ted> Yoric: okay
  2066. # [15:31] * Joins: till|dinner (till@moz-E3DADFE5.adsl.alicedsl.de)
  2067. # [15:32] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  2068. # [15:32] * armenzg_brb is now known as armenzg
  2069. # [15:32] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  2070. # [15:33] * Quits: tromey (tromey@514D186.F3BBB17D.144F44FA.IP) (Ping timeout)
  2071. # [15:34] * Joins: tromey (tromey@514D186.F3BBB17D.144F44FA.IP)
  2072. # [15:34] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Quit: Konversation terminated!)
  2073. # [15:34] * Joins: ddahl (ddahl@8CB99E31.BCE213D.858C3625.IP)
  2074. # [15:35] * Quits: ckitching (ckitching@moz-C0166612.plus.com) (Input/output error)
  2075. # [15:35] * Quits: squeakytoy (squeakytoy@7061EEAD.41CBD7B1.148A607A.IP) (Quit: Leaving)
  2076. # [15:35] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  2077. # [15:35] * Joins: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com)
  2078. # [15:36] * coop|afk is now known as coop|mtg
  2079. # [15:36] * Joins: Enn (enn@FCCEA34F.7672369.D8E68FF6.IP)
  2080. # [15:36] * Joins: serge (Thunderbir@moz-79F95649.dsl.teksavvy.com)
  2081. # [15:37] * Joins: jimm (jmathies@moz-DF439B90.pn.at.cox.net)
  2082. # [15:37] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  2083. # [15:37] * Joins: gustavold (gustavold@A2994CCC.ED977FAE.8D3F079C.IP)
  2084. # [15:38] * Joins: LeandroL (leandro@AAA9E8C0.BC5C41C1.218432E1.IP)
  2085. # [15:40] * Quits: ahal (ahal@moz-CD77F5E2.cpe.pppoe.ca) (Input/output error)
  2086. # [15:41] * Quits: Jerry_Mac (hshih@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  2087. # [15:41] * Joins: mastizada (Thunderbir@71DE7026.D9EC1EEB.D2FADA4.IP)
  2088. # [15:42] * Joins: Edgar (Thunderbir@moz-36CCDF56.dynamic.hinet.net)
  2089. # [15:43] * FuzzyFox is now known as FuzzyFox|afk
  2090. # [15:44] * Joins: gakiwate (gakiwate@moz-364873F6.san.res.rr.com)
  2091. # [15:45] * hwine-commuting is now known as hwine
  2092. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/f30c30258703 - Karl Tomlinson - Bug 1074765 - Test PeriodicWave output. a=abillings
  2093. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/d57970543015 - Karl Tomlinson - Bug 1074765 - Move const periodicWaveSize multiplier out of loop. r=rillian, a=abillings
  2094. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/8a61e39831f0 - Karl Tomlinson - Bug 1074765 - Increment phase after sampling to begin PeriodicWave at phase = 0. r=rillian, a=abillings
  2095. # [15:45] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  2096. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/2b7efe173370 - Karl Tomlinson - Bug 1074765 - Use greater weight for nearer sample in PeriodicWave interpolation. r=rillian, a=abillings
  2097. # [15:45] <Tomcat|sheriffduty> Unfocused: ping
  2098. # [15:46] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5943291a9752 - Karl Tomlinson - Bug 1012609 - Improve PeriodicWave phase-wrapping logic. r=rillian, a=abillings
  2099. # [15:46] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/1ef9a397c118 - Bas Schouten - Bug 1060736 - Disable all acceleration on HD 3000 for driver versions 2321 or lower. r=nical, a=sledru
  2100. # [15:46] * Quits: gustavold (gustavold@A2994CCC.ED977FAE.8D3F079C.IP) (Ping timeout)
  2101. # [15:46] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/9f37e24b1915 - Boris Zbarsky - Bug 1072991 - Make sure to set the right base URI on the document clones we create for printing. r=smaug, a=sledru
  2102. # [15:46] * Quits: gakiwate (gakiwate@moz-364873F6.san.res.rr.com) (Ping timeout)
  2103. # [15:46] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/27cb26c18799 - Wes Johnston - Bug 1064669 - Initialize MediaPlayers in delayed startup. r=mfinkle, a=sledru
  2104. # [15:46] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/c93ccef3df64 - Boris Zbarsky - Bug 974857 - Compare attempted anchor traversals to both the actual page URI and the exposable URI, and do an anchor scroll if either one matches. r=smaug, a=lmandel
  2105. # [15:46] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/2010c1973ded - Thomas Zimmermann - Bug 1065999 - Ignore unknown Bluetooth properties. r=shuang, a=bajaj
  2106. # [15:47] * Quits: Edgar (Thunderbir@moz-36CCDF56.dynamic.hinet.net) (Quit: Edgar)
  2107. # [15:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/64ec6cd769a6 - Sotaro Ikeda - Bug 1075136 - backout the commit
  2108. # [15:47] * Quits: Morris (Morris@moz-AB709101.hinet-ip.hinet.net) (Quit: Morris)
  2109. # [15:47] * coop|mtg is now known as coop
  2110. # [15:48] * Joins: spohl (Adium@moz-F350969E.reverse.softlayer.com)
  2111. # [15:48] * Joins: gustavold (gustavold@31A62FD3.1FB9D06E.8D3F079C.IP)
  2112. # [15:48] * Joins: Archaeopteryx (itsme@moz-5BB120D.cust.telecolumbus.net)
  2113. # [15:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e54edf3b633c - Carsten "Tomcat" Book - Backed out changeset 01a525d9c6c2 (bug 1073846) for suspicion of causing dt1 test failures
  2114. # [15:51] * Quits: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.32a1/20141001003005])
  2115. # [15:52] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Ping timeout)
  2116. # [15:54] <Tomcat|sheriffduty> cervantes: ping
  2117. # [15:55] * Quits: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp) (Quit: Konversation terminated!)
  2118. # [15:55] * Joins: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP)
  2119. # [15:56] * Joins: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP)
  2120. # [15:57] * Joins: AaronMT (AaronMT@moz-53D1D1F.cpe.net.cable.rogers.com)
  2121. # [15:57] * Joins: ahal (ahal@moz-CD77F5E2.cpe.pppoe.ca)
  2122. # [15:57] * FuzzyFox|afk is now known as FuzzyFox
  2123. # [15:58] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  2124. # [16:01] <till|dinner> gfritzsche: ping
  2125. # [16:01] * Joins: gakiwate (gakiwate@moz-364873F6.san.res.rr.com)
  2126. # [16:01] * till|dinner is now known as till
  2127. # [16:01] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Input/output error)
  2128. # [16:02] * Joins: wlach (wlach@moz-4883F17D.vif.net)
  2129. # [16:02] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/07582278fef2 - Randell Jesup - Bug 1073345: Block duplicate Shmems from the GMP SharedMemory cache r=cpearce a=abillings
  2130. # [16:02] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/ff91afbb6355 - Randell Jesup - Bug 1073350: Validate that returned decoded Shmems have enough data r=cpearce a=abillings
  2131. # [16:02] * Joins: surkov (surkov@13F2CEC5.7672369.D8E68FF6.IP)
  2132. # [16:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bff3b9889256 - Christoph Kerschbaumer - Bug 1073282 - Proxy release of mLoadInfo in cannel dtors (r=jduell)
  2133. # [16:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8b9012ea962e - Christoph Kerschbaumer - Bug 1075230 - CSP: Test enforcment for scheme-wildcard combination (r=sstamm)
  2134. # [16:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9536efa6b07b - Christoph Kerschbaumer - Bug 1075230 - CSP: Update enforcment for scheme-wildcard combination (r=sstamm)
  2135. # [16:03] * Joins: lduros (user@moz-A888D5F1.phlapa.fios.verizon.net)
  2136. # [16:04] * Quits: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com) (Client exited)
  2137. # [16:06] * Joins: jimb (user@88F51059.F3BBB17D.144F44FA.IP)
  2138. # [16:06] * Quits: skeuomorf (skeuomorf@8F3D0F9D.6A9933D9.78B20577.IP) (Ping timeout)
  2139. # [16:07] <gfritzsche> till: pong
  2140. # [16:07] * edmorley is now known as edmorley|sheriffduty
  2141. # [16:07] * Tomcat|sheriffduty is now known as Tomcat
  2142. # [16:08] <till> gfritzsche: hey, you're working on telemetry probes stuff, right?
  2143. # [16:08] <gfritzsche> till: yep
  2144. # [16:08] * Quits: Gijs (gijs@moz-43FD6530.range86-164.btcentralplus.com) (Quit: yosemite time)
  2145. # [16:08] * Joins: sunfish (chatzilla@moz-A925CD97.dsl.dynamic.fusionbroadband.com)
  2146. # [16:09] * Quits: tzimmermann (tzimmerman@moz-81435106.pools.vodafone-ip.de) (Quit: Ex-Chat)
  2147. # [16:09] <till> gfritzsche: cool. (Hopefully) quick question, then: is it possible to implement probes for things like "n elements of type X used on page"?
  2148. # [16:09] <gfritzsche> till: which reminds me - for bug 1069953 i need to find out how i could get shumway changes on the trains properly
  2149. # [16:10] <till> gfritzsche: the specific probe I'm interested in in "number of Flash embeddings on page"
  2150. # [16:10] <gfritzsche> till: sure, not immediately sure where to best put this, but certainly possible
  2151. # [16:11] <till> gfritzsche: cool. Can I needinfo you on a bug so you can maybe comment there with some hints?
  2152. # [16:11] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Input/output error)
  2153. # [16:12] <gfritzsche> till: might need to clear up how you want to count dynamically added elements etc., probably "flash elements seen on page during page lifetime"
  2154. # [16:12] * Joins: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net)
  2155. # [16:12] * Tomcat is now known as Tomcat|afk
  2156. # [16:12] <myrdd> hi all, could someone give me an advice? I want to run xpcshell unit test for an addon – where can I put them in the mozilla-central directory that "./mach xpcshell-test" will work?
  2157. # [16:12] <gfritzsche> till: sure
  2158. # [16:12] * Quits: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: Leaving.)
  2159. # [16:12] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/7c07c6466236 - Randell Jesup - Bug 1073345: Block duplicate Shmems from the GMP SharedMemory cache r=cpearce a=abillings
  2160. # [16:12] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/2886eca89559 - Randell Jesup - Bug 1073350: Validate that returned decoded Shmems have enough data r=cpearce a=abillings
  2161. # [16:12] * Joins: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net)
  2162. # [16:12] * lth|out is now known as lth
  2163. # [16:12] * FuzzyFox is now known as FuzzyFox|afk
  2164. # [16:13] <till> gfritzsche: as for shumway changes: pull request against https://github.com/mozilla/shumway/ or just file a bug (in Firefox :: Shumway on bmo) explaining what needs to change
  2165. # [16:13] * Joins: davispuh (quassel@44AEFB1D.4605F0B6.D1BFA94D.IP)
  2166. # [16:13] <till> gfritzsche: thanks
  2167. # [16:13] * FuzzyFox|afk is now known as FuzzyFox
  2168. # [16:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4796b79ba4fc - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  2169. # [16:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7763c416972c - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2170. # [16:13] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  2171. # [16:14] * Quits: bmoss (bmoss@moz-54D507F.hsd1.ca.comcast.net) (Quit: bmoss)
  2172. # [16:14] <gfritzsche> till: ok, how do we get shumway releases on specific trains though? asking for potential nsITelemetry interface change, which would affect shumway
  2173. # [16:14] <till> gfritzsche: Shumway doesn't ride the trains
  2174. # [16:15] * lmandel_afk is now known as lmandel
  2175. # [16:15] * Quits: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: Leaving.)
  2176. # [16:15] * Quits: serge (Thunderbir@moz-79F95649.dsl.teksavvy.com) (Client exited)
  2177. # [16:15] <till> gfritzsche: it is, however, available as an extension on amo, so we have to deal with multi-version stuff
  2178. # [16:15] <till> to some extent
  2179. # [16:15] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  2180. # [16:15] <gfritzsche> till: ah, thanks, i thought we dropped it in the tree somewhere
  2181. # [16:16] <till> gfritzsche: we do!
  2182. # [16:16] <till> gfritzsche: but it only gets compiled into Nightly
  2183. # [16:16] <gfritzsche> aha, good to know :)
  2184. # [16:16] <till> gfritzsche: still, to get changes into it, we need to have those in our github repo first, which we semi-regularly merge to m-c
  2185. # [16:17] <yury> till: I thought the bug about flash content without flash
  2186. # [16:18] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2187. # [16:18] * Joins: dbaron (dbaron@510D751C.27376607.189F3E15.IP)
  2188. # [16:18] * ChanServ sets mode: +ao dbaron dbaron
  2189. # [16:18] <yury> we are already tracking shumway stuff
  2190. # [16:18] <yury> till: we need info from beta/aurora users about flash content usage
  2191. # [16:18] <yury> (without shumway installed)
  2192. # [16:19] <till> yury: sure
  2193. # [16:19] <till> yury: gfritzsche and I were talking about two different things
  2194. # [16:19] <yury> gfritzsche: existing telemetry probes for shumway is already landed (see SHUMWAY_ prefixed)
  2195. # [16:19] * Quits: mastizada (Thunderbir@71DE7026.D9EC1EEB.D2FADA4.IP) (Ping timeout)
  2196. # [16:20] * Joins: timdream (timdream@moz-A29932FC.dynamic.hinet.net)
  2197. # [16:20] <yury> ah, okay
  2198. # [16:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  2199. # [16:20] <till> gfritzsche: but in case that wasn't clear: my question was about telemetry probes that work without Shumway being active
  2200. # [16:20] * Quits: m_gol (m_gol@moz-7C4F10C9.neoplus.adsl.tpnet.pl) (Ping timeout)
  2201. # [16:20] * Quits: avaida (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
  2202. # [16:20] <gfritzsche> sure, got that from the bug, although commenting now on what you actually want to measure
  2203. # [16:20] * Joins: mastizada (Thunderbir@87EDA858.AA8066EC.968A78B9.IP)
  2204. # [16:20] * yury thought it's 'is it possible to implement probes for things like "n elements of type X used on page"?' conversation
  2205. # [16:22] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2206. # [16:22] * Quits: KaiRo (robert@moz-A74B689A.adsl.highway.telekom.at) (Ping timeout)
  2207. # [16:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  2208. # [16:22] * Joins: KaIRC (robert@moz-2B501352.adsl.highway.telekom.at)
  2209. # [16:23] <gfritzsche> looks like johns can probably best point to *where* to implement this though
  2210. # [16:23] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2211. # [16:23] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  2212. # [16:24] * zz_miketaylr is now known as miketaylr
  2213. # [16:24] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  2214. # [16:25] * Quits: timdream (timdream@moz-A29932FC.dynamic.hinet.net) (Quit: timdream)
  2215. # [16:26] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  2216. # [16:26] * ChanServ sets mode: +o ehsan
  2217. # [16:26] * Joins: kentuckyfriedtakahe (ajones@moz-81C2E54A.hsd1.ca.comcast.net)
  2218. # [16:26] * Joins: timdream (timdream@moz-A29932FC.dynamic.hinet.net)
  2219. # [16:27] * Joins: shorlander (shorlander@moz-26B8EBF6.swo.res.rr.com)
  2220. # [16:27] <till> yury: yeah, we mixed two topics in that conversation
  2221. # [16:28] * philor|away is now known as philor
  2222. # [16:28] * Joins: justindarc (justindarc@983B2741.D80FB52E.B58D01CE.IP)
  2223. # [16:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/cefce516a940 - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  2224. # [16:28] * KaIRC is now known as KaiRo
  2225. # [16:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c813bb54459c - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2226. # [16:29] * Joins: capella-s32 (capella-s3@49802A15.8E72683A.5A1B6CB8.IP)
  2227. # [16:29] * Quits: capella-s3 (capella-s3@moz-3A08EE5.twcny.res.rr.com) (Ping timeout)
  2228. # [16:29] * Joins: garvank (Garvan@FCCEA34F.7672369.D8E68FF6.IP)
  2229. # [16:30] * Quits: bjacob (bjacob@moz-CC07A754.cable.teksavvy.com) (Ping timeout)
  2230. # [16:30] * Joins: serge (Thunderbir@moz-79F95649.dsl.teksavvy.com)
  2231. # [16:30] * Quits: capella-s32 (capella-s3@49802A15.8E72683A.5A1B6CB8.IP) (Ping timeout)
  2232. # [16:31] * Quits: CristinaM (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
  2233. # [16:32] * Quits: zimio (zimio@moz-D52819E1.mullvad.net) (Ping timeout)
  2234. # [16:33] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  2235. # [16:33] * Quits: timdream (timdream@moz-A29932FC.dynamic.hinet.net) (Quit: timdream)
  2236. # [16:33] * Joins: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp)
  2237. # [16:33] * Joins: mconley (mconley@FCCEA34F.7672369.D8E68FF6.IP)
  2238. # [16:33] <jgraham> wchen: There's a patch in bug 1064211 with no review flags set and no activity for some time. Intentional?
  2239. # [16:34] * AaronMT is now known as fennecbot
  2240. # [16:34] * fennecbot is now known as AaronMT
  2241. # [16:34] * Quits: PiresFelix (Leonardo@3FD18D79.DBEB44D5.1E8E695C.IP) (Quit: Leaving)
  2242. # [16:34] * Quits: kentuckyfriedtakahe (ajones@moz-81C2E54A.hsd1.ca.comcast.net) (Input/output error)
  2243. # [16:34] * Joins: timdream (timdream@moz-A29932FC.dynamic.hinet.net)
  2244. # [16:35] * Joins: jchaulk (jchaulk@moz-16B31471.dsl.teksavvy.com)
  2245. # [16:35] * Quits: mastizada (Thunderbir@87EDA858.AA8066EC.968A78B9.IP) (Ping timeout)
  2246. # [16:35] * Joins: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP)
  2247. # [16:35] * Quits: spohl (Adium@moz-F350969E.reverse.softlayer.com) (Quit: Leaving.)
  2248. # [16:36] * Joins: mastizada (Thunderbir@71DE7026.D9EC1EEB.D2FADA4.IP)
  2249. # [16:37] * Quits: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP) (Connection reset by peer)
  2250. # [16:39] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2251. # [16:39] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  2252. # [16:39] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2253. # [16:39] * Quits: wlach (wlach@moz-4883F17D.vif.net) (Ping timeout)
  2254. # [16:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/69bb4035eba1 - stefanh@inbox.com - Bug 1075672 - Style the sidebar in places window with Yosemite behind-window vibrancy, r=gijs
  2255. # [16:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/02e5436e40ed - Martyn Haigh - Bug 1075576 - Change the TabsLayoutAdapter API to use TabsLayoutItemView instead of the generic View (r=lucasr)
  2256. # [16:41] * Joins: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP)
  2257. # [16:43] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  2258. # [16:43] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  2259. # [16:43] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  2260. # [16:43] * Joins: pauly (silaghipau@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  2261. # [16:43] * Joins: mdas (mdas@FCCEA34F.7672369.D8E68FF6.IP)
  2262. # [16:44] * Joins: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP)
  2263. # [16:45] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Quit: masayuki)
  2264. # [16:45] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  2265. # [16:45] * Quits: gakiwate (gakiwate@moz-364873F6.san.res.rr.com) (Input/output error)
  2266. # [16:46] * Quits: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP) (Connection reset by peer)
  2267. # [16:47] * Joins: bjacob (bjacob@moz-CC07A754.cable.teksavvy.com)
  2268. # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/32366cc2a58e - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  2269. # [16:47] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/ff55c8f1970f - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2270. # [16:47] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Input/output error)
  2271. # [16:47] * FuzzyFox is now known as FuzzyFox|afk
  2272. # [16:48] * Quits: justindarc (justindarc@983B2741.D80FB52E.B58D01CE.IP) (Input/output error)
  2273. # [16:48] * Joins: jgriffin (jgriffin@moz-791CC332.hsd1.wa.comcast.net)
  2274. # [16:48] * Quits: Enn (enn@FCCEA34F.7672369.D8E68FF6.IP) (Input/output error)
  2275. # [16:48] * Joins: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP)
  2276. # [16:48] <gfritzsche> till: filed bug 1076897 for the other story, but now that i think about it... not sure how you would tell the changes on nightly without version bumps
  2277. # [16:48] * Joins: justindarc (justindarc@983B2741.D80FB52E.B58D01CE.IP)
  2278. # [16:48] * Joins: Enn (enn@FCCEA34F.7672369.D8E68FF6.IP)
  2279. # [16:48] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  2280. # [16:49] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  2281. # [16:49] * Quits: Shrooms (Shrooms@moz-E1DCF9D4.asm.bellsouth.net) (Client exited)
  2282. # [16:50] * Joins: Jackneill (Jackneill@moz-72841BFD.pool.digikabel.hu)
  2283. # [16:50] * miketaylr is now known as zz_miketaylr
  2284. # [16:50] * Joins: mchang (mchang@moz-95B568D6.socal.res.rr.com)
  2285. # [16:50] <till> gfritzsche: I'm not even sure I understand what that change means for us
  2286. # [16:50] * Quits: twi (Adium@moz-56EAEB28.retail.telecomitalia.it) (Quit: Leaving.)
  2287. # [16:50] <till> gfritzsche: if the new arguments are optional, what happens if we just don't provide them?
  2288. # [16:51] * Quits: gaurav0x (gaurav_rai@8AFFBE4A.1BEAF57F.40CEB881.IP) (Quit: Leaving)
  2289. # [16:51] * Joins: Shrooms (Shrooms@moz-E1DCF9D4.asm.bellsouth.net)
  2290. # [16:51] <till> gfritzsche: and conversely, what happens in old versions if we *do* provide them? Does registerAddonHistogram throw for too many arguments?
  2291. # [16:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/39010225dc9f - Margaret Leibovic - backout 2b67ef67b6a9 for regressing "request desktop site"
  2292. # [16:51] * RyanVM is now known as RyanVM|brb
  2293. # [16:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/e45de3a150aa - Margaret Leibovic - Bug 1074933 - backout 135564e9e7f5 for autophone regressions
  2294. # [16:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c3793a1dd33b - Margaret Leibovic - Bug 1041604 - Update query in search bar when user navigates to new results page. r=wesj
  2295. # [16:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b1ead9fba91b - Daniel Holbert - Bug 1076443: Remove no-longer-used variable 'gBrowserTabsRemoteInitialized' from nsAppRunner.cpp. r=jimm
  2296. # [16:51] * zz_miketaylr is now known as miketaylr
  2297. # [16:52] <mwargers> how can I search between 2 changesets? Between dates doesn't seem to work well
  2298. # [16:52] * Joins: bdahl (bdahl@moz-50253CE8.mycingular.net)
  2299. # [16:53] <RyanVM|brb> mwargers: with pushlog, you can use fromchange/tochange
  2300. # [16:53] <RyanVM|brb> and the hash
  2301. # [16:53] <mwargers> RyanVM|brb: tried that, it didn't seem to work for me
  2302. # [16:53] <RyanVM|brb> example?
  2303. # [16:53] * Quits: gabor (gabor@moz-95CF971E.net-tv.hu) (Client exited)
  2304. # [16:54] <mwargers> RyanVM|brb: http://hg.mozilla.org/mozilla-central/pushloghtml?startdate=6b8da5940f74&enddate=152ef25e89ae
  2305. # [16:54] * Joins: spohl (Adium@moz-73769B6F.reverse.softlayer.com)
  2306. # [16:54] * Joins: gakiwate (gakiwate@moz-364873F6.san.res.rr.com)
  2307. # [16:54] <gfritzsche> till: well, the argument order changes
  2308. # [16:54] <mwargers> also http://hg.mozilla.org/mozilla-central/pushloghtml?startdate=2014-09-09+00%3A00%3A00&enddate=2014-09-10+12%3A00%3A00 doesn't return those changesets from the builds of those dates
  2309. # [16:54] <fabrice> snorp: PING
  2310. # [16:54] <gfritzsche> till: so, either throwing at you or doing the wrong thing
  2311. # [16:54] <fabrice> hm, ping
  2312. # [16:54] * Joins: senicar (senicar@moz-F92EEDF8.static.amis.net)
  2313. # [16:54] <snorp> fabrice: oh god pong
  2314. # [16:54] <snorp> oh, alright.
  2315. # [16:55] <snorp> I thought it was a PING
  2316. # [16:55] <fabrice> snorp: can you r+ bug 1042291 ?
  2317. # [16:55] <RyanVM|brb> mwargers: umm, fromchange/tochange
  2318. # [16:55] <RyanVM|brb> mwargers: not fromdate/todate
  2319. # [16:55] <yury> till: I guess we have to check Firefox build date
  2320. # [16:55] <fabrice> snorp: no, it was a capslock error!
  2321. # [16:55] * davidb is now known as davidb|afk
  2322. # [16:55] <snorp> fabrice: hah
  2323. # [16:55] <snorp> fabrice: yeah
  2324. # [16:55] * Joins: mt_ (mt@moz-62518563.mtv2.mozilla.com)
  2325. # [16:55] <RyanVM|brb> mwargers: http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=6b8da5940f74&tochange=152ef25e89ae
  2326. # [16:55] <RyanVM|brb> works fine for me
  2327. # [16:55] <mwargers> RyanVM|brb: I can't see those fields, only date fields
  2328. # [16:56] <RyanVM|brb> 10:51:54 AM - RyanVM|brb: mwargers: with pushlog, you can use fromchange/tochange
  2329. # [16:56] <gfritzsche> till: those arguments are not required for all probe types, so i want to make them optional
  2330. # [16:56] <fabrice> snorp: thanks!
  2331. # [16:56] <snorp> fabrice: sure
  2332. # [16:56] <snorp> fabrice: if you want to work improvements to that it would be appreciated I think
  2333. # [16:56] <mwargers> RyanVM|brb: I guess I have to edit the url bar then
  2334. # [16:56] <snorp> s/work/work on/
  2335. # [16:56] <RyanVM|brb> yup
  2336. # [16:56] * Joins: ferjm (textual@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net)
  2337. # [16:56] <till> gfritzsche: oh, I see now. Your second code example in the bug came out slightly wrong, and that threw me off
  2338. # [16:56] <till> yury: agreed
  2339. # [16:57] <mwargers> hrm, well, not really helpful, but I guess it will have to do
  2340. # [16:57] <fabrice> snorp: I would need some mentoring, but why not
  2341. # [16:57] <yury> gfritzsche: till: people can install shumway and pdf.js addons on older versions of ff (and also install older addons on newer ff)
  2342. # [16:57] <RyanVM|brb> mwargers: patches welcome
  2343. # [16:57] <till> yury: yes, I pointed that out earlier
  2344. # [16:57] <snorp> fabrice: the "hard" parts are around detecting if we are in requestAnimationFrame callback and whether or not the element is in the DOM
  2345. # [16:57] <snorp> fabrice: apparently shadow dom and bullshit like that makes the second thing hard
  2346. # [16:58] <yury> bdahl: https://bugzilla.mozilla.org/show_bug.cgi?id=1069990
  2347. # [16:58] * Quits: paolo (paolo@88F51059.F3BBB17D.144F44FA.IP) (Ping timeout)
  2348. # [16:58] <snorp> fabrice: or at least...fuzzy
  2349. # [16:58] <fabrice> snorp: ha ha
  2350. # [16:58] <snorp> fabrice: the first part shoudl be doable
  2351. # [16:58] * mcote|afk is now known as mcote
  2352. # [16:58] <snorp> by mere mortals
  2353. # [16:58] <snorp> (not that I would call you a mortal)
  2354. # [16:58] * Joins: paolo (paolo@88F51059.F3BBB17D.144F44FA.IP)
  2355. # [16:59] <fabrice> I am totally mortal
  2356. # [16:59] * Quits: jdm (jdm@CAB30FBD.8F96AEA7.2D179A7D.IP) (Connection reset by peer)
  2357. # [16:59] * Quits: jimb (user@88F51059.F3BBB17D.144F44FA.IP) (Ping timeout)
  2358. # [17:01] * davidb|afk is now known as davidb
  2359. # [17:02] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  2360. # [17:02] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Ping timeout)
  2361. # [17:02] * ewong is now known as ewong|sleep
  2362. # [17:02] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  2363. # [17:03] * Quits: lduros (user@moz-A888D5F1.phlapa.fios.verizon.net) (Client exited)
  2364. # [17:03] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  2365. # [17:03] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2366. # [17:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1537d250e6b6 - Patrick McManus - bug 1073747 - nsurlparser xpcom methods don't validate input r=sworkman
  2367. # [17:03] * wlach|afk is now known as wlach
  2368. # [17:03] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  2369. # [17:04] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2370. # [17:06] * pmoore|buildduty is now known as pmoore
  2371. # [17:07] * Joins: grobinson (grobinson@moz-4FCE9C75.dsl.dynamic.fusionbroadband.com)
  2372. # [17:08] * edmorley|sheriffduty is now known as edmorley|mtg
  2373. # [17:09] * Quits: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP) (Ping timeout)
  2374. # [17:09] <gfritzsche> yury: hm, so i dont actually know about feature detecting it... any experiences on that front?
  2375. # [17:09] * Joins: zwischenzug (zwischenzu@moz-81AE3853.red-81-44-88.dynamicip.rima-tde.net)
  2376. # [17:09] * mdoglio is now known as mdoglio|mtg
  2377. # [17:09] <yury> anything that will give a hit that arguments order changed
  2378. # [17:10] * FuzzyFox|afk is now known as FuzzyFox
  2379. # [17:10] * pmoore is now known as tea|pmoore
  2380. # [17:10] <yury> till: does optional parameters counts toward function length?
  2381. # [17:11] * Quits: fabrice (fabrice@495A1E63.5994028D.9CA62458.IP) (Quit: Leaving.)
  2382. # [17:11] <till> yury: depends on how they're specified. ES6 default arguments don't
  2383. # [17:11] <till> yury: but I don't think they matter at all, here
  2384. # [17:12] <gfritzsche> yury: cant we just use fx major version if we sync changing the shumway/pdf.js that ship in nightly?
  2385. # [17:12] <yury> extra optional parameter can be added?
  2386. # [17:12] * Quits: mastizada (Thunderbir@71DE7026.D9EC1EEB.D2FADA4.IP) (Ping timeout)
  2387. # [17:12] <till> gfritzsche: see the issue about both being available as extensions
  2388. # [17:12] * Quits: harth (harth@88F51059.F3BBB17D.144F44FA.IP) (Ping timeout)
  2389. # [17:12] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  2390. # [17:12] * Joins: ManishCloud (uid36524@moz-31ABA2C0.irccloud.com)
  2391. # [17:12] <yury> gfritzsche: shumway/pdf.js in nightly do not use registerAddonHistorgrams
  2392. # [17:13] * Quits: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP) (Connection reset by peer)
  2393. # [17:13] * Joins: harth (harth@88F51059.F3BBB17D.144F44FA.IP)
  2394. # [17:13] * Joins: bholley (bholley@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2395. # [17:13] <yury> only as addons installed by users/devs
  2396. # [17:13] * Joins: mastizada (Thunderbir@C1BAFF46.82DDE679.B0A3BF29.IP)
  2397. # [17:13] <rnewman> thanks for the backout, Tomcat|afk; turns out the best thing about robocop is how a local test pass is no predictor of success anywhere else, and vice versa.
  2398. # [17:13] <till> yury: huh, isn't ShumwayTelemetry.jsm run everywhere?
  2399. # [17:13] * FuzzyFox is now known as FuzzyFox|afk
  2400. # [17:14] <yury> till: there are two ShumwayTelemetry.jsm I think
  2401. # [17:14] * till only sees one
  2402. # [17:14] <gfritzsche> till: but if we ship both in nightly, do we need to care about them as extensions there?
  2403. # [17:14] <gfritzsche> this duality is confusing :)
  2404. # [17:14] <till> gfritzsche: yes
  2405. # [17:15] <till> gfritzsche: because you can install the extension in Nightly, too. Any version of the extension
  2406. # [17:15] * Joins: sovemp (shaycraft@37579293.AD310888.4B8DD6BE.IP)
  2407. # [17:15] <yury> till: addon https://github.com/mozilla/shumway/blob/master/extension/firefox/content/ShumwayTelemetry.jsm, m-c https://github.com/mozilla/shumway/blob/master/extension/mozcentral/browser/extensions/shumway/content/ShumwayTelemetry.jsm
  2408. # [17:15] <gfritzsche> till: can, but is it unacceptable if it breaks there?
  2409. # [17:15] <till> gfritzsche: yes
  2410. # [17:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f4eaa493bf0c - Hannes Verschore - Bug 1073861 - IonMonkey: Don't update types during type policy, r=jandem
  2411. # [17:15] <gfritzsche> ah :-/
  2412. # [17:15] * Joins: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP)
  2413. # [17:16] <till> gfritzsche: it's common to install the extension, because it's more up-to-date, and is advertised on areweflashyet.com
  2414. # [17:16] * Joins: catalinb (catalinb@590D2376.7E118222.89C0DD0D.IP)
  2415. # [17:16] <till> yury: oh, I see
  2416. # [17:16] * Joins: mccr8 (mccr8@moz-F3D6C6BB.hsd1.ca.comcast.net)
  2417. # [17:16] * Quits: gakiwate (gakiwate@moz-364873F6.san.res.rr.com) (Input/output error)
  2418. # [17:16] <till> yury: does our build script strip that part out, or do you manually change it?
  2419. # [17:17] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  2420. # [17:17] <yury> script shall (unless it's broken)
  2421. # [17:17] * Quits: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP) (Connection reset by peer)
  2422. # [17:17] * Joins: nacerix (Instantbir@32FFF58C.D8EFF2FE.4A192F9A.IP)
  2423. # [17:17] <till> yury: ok, cool
  2424. # [17:17] * Quits: mastizada (Thunderbir@C1BAFF46.82DDE679.B0A3BF29.IP) (Ping timeout)
  2425. # [17:17] * Quits: adesst (adesanto@691D05D8.C67CCEE5.41E10BD5.IP) (Quit: Leaving.)
  2426. # [17:18] * Joins: adesst (adesanto@691D05D8.C67CCEE5.41E10BD5.IP)
  2427. # [17:18] * Joins: mastizada (Thunderbir@71DE7026.D9EC1EEB.D2FADA4.IP)
  2428. # [17:19] * Joins: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP)
  2429. # [17:19] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  2430. # [17:19] <till> gfritzsche: I don't know enough about how registerAddonHistogram is defined to be sure, but making arguments optional should decrease registerAddonHistogram.length, right?
  2431. # [17:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  2432. # [17:20] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  2433. # [17:20] * Quits: goutamnair (uid25773@moz-A42E5B7B.irccloud.com) (Quit: Connection closed for inactivity)
  2434. # [17:20] * Quits: Sushant94 (Sushant@BF413162.7039D15E.D30E9BEF.IP) (Connection reset by peer)
  2435. # [17:21] <gfritzsche> till: not sure, thats some untreaded IDL/XPCOM/iDontKnow territory for me
  2436. # [17:21] <till> gfritzsche: ok, I'm fairly hopeful, at least
  2437. # [17:21] * Joins: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca)
  2438. # [17:21] * Joins: gsvelto (gsvelto@moz-2311DF2B.clienti.tiscali.it)
  2439. # [17:22] * Quits: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP) (Connection reset by peer)
  2440. # [17:22] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  2441. # [17:22] * Quits: ehugg (ehugg@moz-F46F489D.hsd1.wa.comcast.net) (Quit: ehugg)
  2442. # [17:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  2443. # [17:22] * Joins: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP)
  2444. # [17:23] <till> gfritzsche: if it doesn't, maybe it throws for unexpected argument types? In that case, we could do `try {send probes with one format} catch (e) {send probes with the other format}`
  2445. # [17:23] * Joins: Zupoman (mistrzmag@96766F5F.EAFD72D8.FD4497A0.IP)
  2446. # [17:23] * Joins: capella-s32 (capella-s3@moz-3A08EE5.twcny.res.rr.com)
  2447. # [17:23] * Quits: capella-s3 (capella-s3@D1D9B831.26BB60CE.5A1B6CB8.IP) (Connection reset by peer)
  2448. # [17:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5beba92a3f8e - Mukilan Thiyagarajan - Bug 1073016 - Optimize LRound and LRoundF on x86/x64. r=nbp
  2449. # [17:24] <gfritzsche> till: not really, the last args are all unsigned types
  2450. # [17:24] <yury> gfritzsche: if introducing optional args in idl will not change the length, can you add another optional arg e.g. description?
  2451. # [17:25] <gfritzsche> yury: i would rather want to investigate other options first before adding dummy args
  2452. # [17:25] * Joins: jdm (jdm@13F2CEC5.7672369.D8E68FF6.IP)
  2453. # [17:26] <till> yury, gfritzsche: I'm pretty optimistic about the length thing
  2454. # [17:26] * RyanVM|brb is now known as RyanVM
  2455. # [17:26] * Quits: sir_none (Thunderbir@5F87E885.DDC54EB2.170057B8.IP) (Quit: sir_none)
  2456. # [17:27] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  2457. # [17:28] * Quits: timdream (timdream@moz-A29932FC.dynamic.hinet.net) (Quit: timdream)
  2458. # [17:28] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2459. # [17:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/dd1ae316020c - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  2460. # [17:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/d055837631df - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2461. # [17:28] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2462. # [17:29] * davidb is now known as davidb|afk
  2463. # [17:29] * Quits: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP) (Quit: victorporof)
  2464. # [17:29] * khuey|away is now known as khuey
  2465. # [17:29] * Joins: timdream (timdream@moz-A29932FC.dynamic.hinet.net)
  2466. # [17:30] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  2467. # [17:31] * tea|pmoore is now known as pmoore
  2468. # [17:32] * Joins: twi (Adium@moz-11C903EE.cust.vodafonedsl.it)
  2469. # [17:32] <@ted> mccr8: ping
  2470. # [17:32] <mccr8> ted: pong
  2471. # [17:33] <@ted> mccr8: i have a question about your leak thresholds patch
  2472. # [17:33] <@ted> http://hg.mozilla.org/mozilla-central/annotate/af6c928893c0/layout/tools/reftest/runreftest.py#l514
  2473. # [17:33] * Quits: @dbaron (dbaron@510D751C.27376607.189F3E15.IP) (Ping timeout)
  2474. # [17:33] <mccr8> sure
  2475. # [17:33] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2476. # [17:33] <@ted> that's under an if options.runTestsInParallel: block
  2477. # [17:33] <@ehsan> erahm++
  2478. # [17:33] * Parts: pauly (silaghipau@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  2479. # [17:34] * Quits: garvank (Garvan@FCCEA34F.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2480. # [17:34] <@ted> so it seems to error after running the process
  2481. # [17:34] <mccr8> ted: doh
  2482. # [17:34] <@ted> 0:12.84 processLeakLog(self.leakLogFile, options.leakThresholds, options.ignoreMissingLeaks)
  2483. # [17:34] <@ted> 0:12.84 AttributeError: Values instance has no attribute 'leakThresholds'
  2484. # [17:34] <@ted> mccr8: i'm just confused about how this isn't broken on tbpl
  2485. # [17:35] <mccr8> ted: yeah I don't know. I know that on b2g reftests it is producing an error, it just isn't making the tree orange.
  2486. # [17:35] <mhoye> This is _amazing_
  2487. # [17:35] * Quits: Archaeopteryx (itsme@moz-5BB120D.cust.telecolumbus.net) (Quit: Goodbye)
  2488. # [17:35] * Joins: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP)
  2489. # [17:35] <mhoye> http://prime4commit.com/projects/77 <-- automatic tipping in a marginal cryptocurrency
  2490. # [17:35] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2491. # [17:35] <@ted> mccr8: i think moving it up out of that block should fix it
  2492. # [17:36] <mhoye> And it's keying off the B2G BumperBot syncronization script!
  2493. # [17:36] <@ted> i just wanted to make sure i wasn't missing something
  2494. # [17:36] <mccr8> ted: ok, thanks. r=you on fixing that?
  2495. # [17:36] <@ted> mccr8: yeah
  2496. # [17:36] <mhoye> Somebody else's script is trying to give one of our scripts fake money!
  2497. # [17:36] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2498. # [17:36] <mccr8> ted: no, that should not be inside that block.
  2499. # [17:36] <@ted> mccr8: trying to land my reftest refactor today, rebased on top of that and was scratching my head
  2500. # [17:36] <mccr8> ted: ah fun.
  2501. # [17:37] <@ted> mccr8: does mach reftest work for you locally?
  2502. # [17:37] * catlee is now known as catlee-lunch
  2503. # [17:37] <@ted> (without a traceback at the end)
  2504. # [17:38] * Quits: mastizada (Thunderbir@71DE7026.D9EC1EEB.D2FADA4.IP) (Quit: mastizada)
  2505. # [17:38] <mccr8> ted: I hadn't tried, I only did a try run
  2506. # [17:38] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Input/output error)
  2507. # [17:38] <@ted> okay
  2508. # [17:38] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2509. # [17:39] * Quits: paolo (paolo@88F51059.F3BBB17D.144F44FA.IP) (Quit: Konversation terminated!)
  2510. # [17:40] * Parts: adesst (adesanto@691D05D8.C67CCEE5.41E10BD5.IP)
  2511. # [17:40] <@ted> mccr8: hah, it is showing up on TBPL: https://tbpl.mozilla.org/php/getParsedLog.php?id=49407824&tree=Mozilla-Inbound&full=1
  2512. # [17:40] * nsm|away is now known as nsm
  2513. # [17:40] <@ted> it's just not making anything orange apparently
  2514. # [17:40] * Joins: djvj (kvijayan@moz-DB4A9C19.scl3.mozilla.com)
  2515. # [17:40] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2516. # [17:40] * Parts: djvj (kvijayan@moz-DB4A9C19.scl3.mozilla.com)
  2517. # [17:40] <mccr8> ted: yeah b2g reftests have a similar problem I'm about to land a fix for. :-/
  2518. # [17:40] <@ted> okay, at least it wasn't my patch breaking anything
  2519. # [17:41] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  2520. # [17:42] * Joins: nical (nical@moz-7EE986F9.fbx.proxad.net)
  2521. # [17:42] * terrence-afk is now known as terrence
  2522. # [17:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/94d5f5c9f972 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  2523. # [17:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/86be5b7145ca - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2524. # [17:44] * Joins: Jerry_Mac (hshih@moz-B0544DC3.dynamic.kbronet.com.tw)
  2525. # [17:44] * davidb|afk is now known as davidb
  2526. # [17:44] * Joins: automata (automata@15BB23CE.DA161F74.E24837B7.IP)
  2527. # [17:44] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6e6a4b63628f - Andrew McCreight - Bug 1068276, part 3 - Set some defaults for leak parameters on B2G reftests. r=jmaher
  2528. # [17:44] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5bed1b3e2da6 - Andrew McCreight - Bug 1068276, part 4 - Fix indentation of leak option setting in reftests. r=ted
  2529. # [17:44] <@ted> mccr8: thx
  2530. # [17:44] * davidb is now known as davidb|afk
  2531. # [17:44] <mccr8> ted: thanks for noticing it. :)
  2532. # [17:44] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  2533. # [17:44] * Quits: bdahl (bdahl@moz-50253CE8.mycingular.net) (Connection reset by peer)
  2534. # [17:46] * Joins: gaurav0x (gaurav_rai@8AFFBE4A.1BEAF57F.40CEB881.IP)
  2535. # [17:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3c341e9e6639 - Till Schneidereit - Bug 1075059 - Part 1: Backout of Array.prototpype.contains usages. r=me
  2536. # [17:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7009237d5e47 - Till Schneidereit - Bug 1075059 - Part 2: Backout of Array.prototpype.contains. r=jorendorff
  2537. # [17:46] * philor is now known as philor|away
  2538. # [17:48] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  2539. # [17:49] * Quits: @ted (luser@moz-E6C2C32D.sctnpa.east.verizon.net) (Quit: Leaving)
  2540. # [17:49] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/b2eb224bbb03 - Ralph Giles - Bug 1063327 - Reject vp9 frames with invalid tiles. r=kinetik, a=sledru
  2541. # [17:50] <mikedeboer> bholley: do you have time or a question?
  2542. # [17:50] <bholley> mikedeboer: depends how involved it is, but probably :-)
  2543. # [17:51] <mikedeboer> bholley: hehe ok, let's see!
  2544. # [17:51] <mikedeboer> bholley: remember reviewing my patch for Loop (Contacts) that is passing objects from chrome->content?
  2545. # [17:52] <bholley> mikedeboer: vaguely, ytes
  2546. # [17:52] <bholley> *yes
  2547. # [17:52] * jchen|away is now known as jchen
  2548. # [17:52] * Joins: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  2549. # [17:52] * mdas is now known as mdas|afk
  2550. # [17:52] <mikedeboer> bholley: it yielded the sec bug wrt structured cloning fixes you needed to make
  2551. # [17:52] <bholley> mikedeboer: right
  2552. # [17:53] <bholley> mikedeboer: those fixes are now made
  2553. # [17:53] * Joins: yeukhon1 (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  2554. # [17:54] <mikedeboer> bholley: so since the structured cloning algo doesn't support the Error object (yet), you recommended to do `new targetWindow.Error()` and copy over the properties
  2555. # [17:54] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc])
  2556. # [17:54] <bholley> mikedeboer: yes
  2557. # [17:54] * Quits: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP) (Ping timeout)
  2558. # [17:55] <mikedeboer> bholley: but helas, the properties don't show up
  2559. # [17:55] <mikedeboer> bholley: and now I think I know why, just by talking to you
  2560. # [17:55] * whimboo is now known as whimboo|afk
  2561. # [17:55] <bholley> mikedeboer: why?
  2562. # [17:56] <mikedeboer> bholley: I have to call `Cu.cloneInto()` for each property that I copy too
  2563. # [17:57] <bholley> mikedeboer: which properties? Strings and stuff?
  2564. # [17:57] <mikedeboer> bholley: yes
  2565. # [17:57] <bholley> mikedeboer: you don't need to clone primitives
  2566. # [17:57] * Joins: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP)
  2567. # [17:57] <mikedeboer> bholley: ok, so then that won't work either
  2568. # [17:57] * Parts: yeukhon1 (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  2569. # [17:58] <mikedeboer> bholley: so it's this method: http://mxr.mozilla.org/mozilla-central/source/browser/components/loop/MozLoopAPI.jsm#40
  2570. # [17:58] * pmoore is now known as pmoore|away
  2571. # [17:58] * Joins: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  2572. # [17:58] * Quits: ggp|away (ggp@9C103D0B.889A0501.4A9B002.IP) (Connection reset by peer)
  2573. # [17:59] * bobowen is now known as bobowen|afk
  2574. # [17:59] * Joins: ggp|away (ggp@9C103D0B.889A0501.4A9B002.IP)
  2575. # [17:59] <bholley> mikedeboer: try Object.defineProperty(Cu.waiveXrays(obj), 'prop', String(error[prop]))
  2576. # [17:59] * Joins: fabrice (fabrice@moz-62518563.mtv2.mozilla.com)
  2577. # [17:59] <mikedeboer> bholley: ok, thx, I will...
  2578. # [18:01] * Joins: emtwo (Adium@moz-BC06FF4A.hsd1.ca.comcast.net)
  2579. # [18:01] * Quits: ahameez (ahameez@C6EC425.A929A425.DDE7AB2D.IP) (Quit: Going offline, see ya! (www.adiirc.com))
  2580. # [18:01] * Quits: raydeo (raydeo@moz-DEAD6930.org) (Input/output error)
  2581. # [18:01] * ahal is now known as ahal|lunch
  2582. # [18:02] * mccr8 is now known as mccr8|away
  2583. # [18:02] * Joins: tomasz (Adium@moz-62518563.mtv2.mozilla.com)
  2584. # [18:03] * jandem is now known as jandem-away
  2585. # [18:03] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/16aa4dfa9001 - Ralph Giles - Bug 1063327 - Reject vp9 frames with invalid tiles. r=kinetik, a=sledru
  2586. # [18:04] * Joins: sabbir_alam_ufo (sabbir_ala@C80A391C.4118ED39.A6AA572A.IP)
  2587. # [18:04] * Joins: raydeo (raydeo@moz-DEAD6930.org)
  2588. # [18:05] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  2589. # [18:05] * Joins: dbaron (dbaron@9C3C22C8.C8079272.284344F5.IP)
  2590. # [18:05] * ChanServ sets mode: +ao dbaron dbaron
  2591. # [18:05] * Joins: goutamnair (uid25773@moz-A42E5B7B.irccloud.com)
  2592. # [18:05] * coop is now known as coop|buildduty
  2593. # [18:06] * Joins: amoghbl1 (Thunderbir@19E7E885.6ABDE3A6.8B6C1D65.IP)
  2594. # [18:06] * Quits: bnicholson (bnicholson@D5DEB921.F67EC404.A36C57B9.IP) (Ping timeout)
  2595. # [18:06] * Quits: @dbaron (dbaron@9C3C22C8.C8079272.284344F5.IP) (Connection reset by peer)
  2596. # [18:07] * lth is now known as lth|dinner
  2597. # [18:07] <fitzgen> bz_away: ping?
  2598. # [18:07] <fitzgen> bholley: ping?
  2599. # [18:07] <bholley> fitzgen: hi
  2600. # [18:07] * Quits: kagari (kagari@moz-A1825C73.osk2.eonet.ne.jp) (Quit: Konversation terminated!)
  2601. # [18:08] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  2602. # [18:08] * Quits: jacek (jacek@moz-ECAAA1A8.psi.wroc.pl) (Quit: Konversation terminated!)
  2603. # [18:08] * Joins: mixedpuppy (mixedpuppy@E3EB67E7.598923F0.27807B97.IP)
  2604. # [18:08] <fitzgen> bholley: do all webidl files need to be in dom/? I want to add a chrome only thing for devtools and I don't think it makes sense there, but rather with the rest of our code, like our other XPIDL stuff is
  2605. # [18:09] <bholley> fitzgen: yes. In general, you probably shouldn't be using WebIDL for non-DOM stuff
  2606. # [18:09] <bholley> fitzgen: the codesize tradeoff is significant
  2607. # [18:09] * Joins: mmc (uid16596@moz-A42E5B7B.irccloud.com)
  2608. # [18:09] <bholley> fitzgen: there are certainly cases
  2609. # [18:09] <bholley> fitzgen: but I'm kind of worried about us just using WebIDL for everything because it's nicer
  2610. # [18:09] * Joins: bdahl (bdahl@moz-62518563.mtv2.mozilla.com)
  2611. # [18:09] <fitzgen> bholley: hm. ejpbruel was suggesting that I /should/ if I want to use my thing in workers, which I certainly do
  2612. # [18:10] <bholley> fitzgen: oh, I see
  2613. # [18:10] <bholley> fitzgen: yeah, XPIDL won't work for workers
  2614. # [18:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/12ec3e08ee67 - George Wright - Bug 1042291 - Implement a better heuristic for when to use HW accelerated <canvas> r=snorp
  2615. # [18:10] * kats is now known as kats-afk
  2616. # [18:10] <fitzgen> bholley: so webidl is the way to go?
  2617. # [18:11] <mwargers> is it possible for the browser to just quit without generating a crash report?
  2618. # [18:11] <bholley> fitzgen: yeah
  2619. # [18:11] <fitzgen> bholley: and that means putting it in dom/
  2620. # [18:11] <fitzgen> ?
  2621. # [18:11] * Quits: gsvelto (gsvelto@moz-2311DF2B.clienti.tiscali.it) (Input/output error)
  2622. # [18:11] * philor|away is now known as philor
  2623. # [18:11] <bholley> fitzgen: I believe so, yes
  2624. # [18:11] * Joins: glosoli (glosoli@20F8CB66.F521A5D7.434E912D.IP)
  2625. # [18:11] <fitzgen> bholley: thanks!
  2626. # [18:11] <bholley> fitzgen: np
  2627. # [18:12] <fitzgen> bholley: happen to know of a recent patch that intro'd webidl bindings that I can crib from?
  2628. # [18:12] * fitzgen is reading https://developer.mozilla.org/en-US/docs/Mozilla/WebIDL_bindings right now
  2629. # [18:13] * Quits: timdream (timdream@moz-A29932FC.dynamic.hinet.net) (Quit: timdream)
  2630. # [18:13] * lmandel is now known as lmandel_afk
  2631. # [18:13] * Quits: grobinson (grobinson@moz-4FCE9C75.dsl.dynamic.fusionbroadband.com) (Input/output error)
  2632. # [18:14] <bholley> fitzgen: yeah I don't know of anything offhand. You could dig
  2633. # [18:14] * Quits: espadrine` (ttyl@moz-87D32D93.w80-12.abo.wanadoo.fr) (Ping timeout)
  2634. # [18:14] * Quits: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP) (Quit: Leaving.)
  2635. # [18:14] <fitzgen> thanks anyways
  2636. # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ddbbf2820441 - Robert Strong - Mac v2 signing - Bug 1076370 - Fix Firefox.app l10n repacks for Mac v2 signing. r=jmaher
  2637. # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/497e4c92e680 - Wes Johnston - Bug 1073776 - "Tapping on urlbar after performing search shows URL, not search term" [r=margaret.leibovic]
  2638. # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4b7e1497fbcb - Wes Johnston - Bug 1070099 - "apk file downloaded in Firefox cannot be opened from Android download manager" [r=margaret.leibovic]
  2639. # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/b34aa5d30c65 - wesj - Bug 1071120 - "Telemetry for searching from error pages" [r=mark.finkle]
  2640. # [18:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d353e7dd0ae8 - wesj - Bug 1071120 - Fixup wifi telemetry. r=mfinkle
  2641. # [18:15] * Joins: cviecco (cviecco@moz-62518563.mtv2.mozilla.com)
  2642. # [18:16] * Quits: flaviu (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: flaviu)
  2643. # [18:16] <gfritzsche> till, yury: no luck on the registerAddonHistogram.length :-/
  2644. # [18:16] <till> gfritzsche: :(
  2645. # [18:16] * Joins: nl (chatzilla@moz-29D843ED.net151.n37.ru)
  2646. # [18:16] * Joins: bwc (Adium@moz-62518563.mtv2.mozilla.com)
  2647. # [18:16] * Joins: bnicholson (bnicholson@moz-62518563.mtv2.mozilla.com)
  2648. # [18:17] <till> gfritzsche: so the length stays at 6?
  2649. # [18:17] * Quits: nl (chatzilla@moz-29D843ED.net151.n37.ru) (Connection reset by peer)
  2650. # [18:18] <gfritzsche> till: yes
  2651. # [18:18] * Joins: alex_tz (uid46009@moz-5F4AA75A.irccloud.com)
  2652. # [18:18] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  2653. # [18:18] * Joins: drno (nohlmeier@moz-62518563.mtv2.mozilla.com)
  2654. # [18:19] <yury> is there a way to tell an interface was changed
  2655. # [18:19] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2656. # [18:19] <yury> we are setting those uuid for a reason, right?
  2657. # [18:19] <mikedeboer> bholley: well, this is interesting :) It appears to work for all props _except_ `message`. Changing the method to https://pastebin.mozilla.org/6689590 makes that work too though.
  2658. # [18:19] * Joins: nl_ (chatzilla@moz-29D843ED.net151.n37.ru)
  2659. # [18:19] * nl_ is now known as nl
  2660. # [18:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  2661. # [18:20] * Joins: bajaj (bajaj_afk@moz-24157589.mtv2.mozilla.com)
  2662. # [18:20] <gfritzsche> yury: but that only helps with checking against one specific interface revision
  2663. # [18:20] * Joins: bajaj1 (bajaj_afk@moz-62518563.mtv2.mozilla.com)
  2664. # [18:20] <yury> yeah, we need list of all old revisions
  2665. # [18:20] <mikedeboer> bholley: so that's passing the `Error#message` prop in the constructor
  2666. # [18:21] <bholley> mikedeboer: can you show me the code that doesn't work?
  2667. # [18:21] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  2668. # [18:21] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2669. # [18:21] * Quits: mccr8|away (mccr8@moz-F3D6C6BB.hsd1.ca.comcast.net) (Quit: computer sleep)
  2670. # [18:21] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2671. # [18:21] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=5d6ec4dddf14 - 118 changesets
  2672. # [18:21] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  2673. # [18:22] <mikedeboer> bholley: https://pastebin.mozilla.org/6689601
  2674. # [18:22] <gfritzsche> yury: i am hoping that someone like bholley knows better (context is bug 1076897)
  2675. # [18:22] * Quits: bajaj (bajaj_afk@moz-24157589.mtv2.mozilla.com) (Ping timeout)
  2676. # [18:22] * Joins: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  2677. # [18:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  2678. # [18:22] * Quits: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP) (Quit: Leaving.)
  2679. # [18:22] <mikedeboer> bholley: so there the `message` string property doesn't get copied over, the others are.
  2680. # [18:23] * Quits: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP) (Ping timeout)
  2681. # [18:23] * Quits: stefanh|away (stefanh@moz-3EED0162.customers.ownit.se) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.29.1/20140923221739])
  2682. # [18:23] * Quits: pranav (pranav@6BFC1AC1.7B79ED8.1C37C358.IP) (Quit: leaving)
  2683. # [18:24] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2684. # [18:24] * Joins: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  2685. # [18:24] * Joins: grobinson (grobinson@C8D79944.CB3251F2.284344F5.IP)
  2686. # [18:25] <senicar> hi guys, I'm having problems with manually starting Autoscroll since firefox 31+. I was told to use sendAsyncMessage and "Autoscroll:Start", but I get nothing. I posted a question on StackOverflow, but no lcuk so far - http://stackoverflow.com/questions/25923744/firefox-startscroll-and-sendasyncmessage . In previous FF version this was a one liner. Can someone please give me a hint what I might be doing wrong, or how to start Autoscroll ma
  2687. # [18:25] <bholley> mikedeboer: are you sure that's the right pastebin?
  2688. # [18:25] <bholley> mikedeboer: it doesn't do what I was suggesting
  2689. # [18:25] * Quits: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP) (Quit: victorporof)
  2690. # [18:25] <erahm> jmaher: pong
  2691. # [18:25] <jmaher> erahm: I saw you had some questions about perf testing and talos
  2692. # [18:25] * bz_away hopes that pastebin is never applied to DOM exceptions...
  2693. # [18:26] <mikedeboer> bholley: no, because I tried that and it didn't fix the issue
  2694. # [18:26] * Joins: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP)
  2695. # [18:26] <erahm> jmaher: oh yeah!
  2696. # [18:26] * bz_away is now known as bz
  2697. # [18:26] <bholley> mikedeboer: the Cu.waiveXrays thing?
  2698. # [18:26] * jimm is now known as jimm-lunch
  2699. # [18:26] <mikedeboer> bholley: yups
  2700. # [18:26] <erahm> jmaher: do we run talos on real hardware?
  2701. # [18:26] * bz starts paying attention
  2702. # [18:26] * Quits: sunfish (chatzilla@moz-A925CD97.dsl.dynamic.fusionbroadband.com) (Ping timeout)
  2703. # [18:26] <jmaher> erahm: yes
  2704. # [18:26] <bholley> mikedeboer: hm, I'm actually surprised that it works at all
  2705. # [18:26] <jmaher> erahm: https://wiki.mozilla.org/Buildbot/Talos/Misc#Hardware_Profile_of_machines_used_in_automation
  2706. # [18:27] <erahm> jmaher: and would you consider it useful for performance testing in the sense of: I turned on logging, does it affect performance
  2707. # [18:27] <bholley> mikedeboer: I don't think any of those property sets should actually be propagated to the underlying object
  2708. # [18:27] * Quits: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: rcirc on GNU Emacs 24.3.92.1)
  2709. # [18:27] * Joins: skeuomorf (skeuomorf@4648CCEB.19A4B30C.78B20577.IP)
  2710. # [18:27] <bholley> mikedeboer: we only do that for Object and Array
  2711. # [18:27] <jmaher> erahm: some tests would be affected by that, like tp5, xperf, and probably some of the scroll tests
  2712. # [18:28] * Joins: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP)
  2713. # [18:28] <mikedeboer> bholley: you do realize this went into the realm of 'involved questions' right?
  2714. # [18:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a2f988781962 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  2715. # [18:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f180d5ed771f - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2716. # [18:29] * Fallen is now known as Fallen|away
  2717. # [18:29] <bholley> bz: I'll help mikedeboer if you go review those little patches I just put in your queue ;-)
  2718. # [18:29] * Quits: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP) (Max SendQ exceeded)
  2719. # [18:29] <erahm> jmaher: and a much more basic question: how do I run the tests and specify which machines to run on? I see it in trychooser, but no option to specify xp or win7 etc
  2720. # [18:29] * Joins: ted (luser@moz-E6C2C32D.sctnpa.east.verizon.net)
  2721. # [18:29] * ChanServ sets mode: +o ted
  2722. # [18:29] * Joins: sheeri (sheeri@moz-DB4A9C19.scl3.mozilla.com)
  2723. # [18:29] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2724. # [18:30] <bholley> mikedeboer: so, first of all - how are you testing whether it "works"?
  2725. # [18:30] <bholley> mikedeboer: are you examining it from content, or from chrome
  2726. # [18:30] <bholley> ?
  2727. # [18:30] <jmaher> erahm: there is some way to specify which machine in try chooser
  2728. # [18:30] <mikedeboer> bholley: from content
  2729. # [18:30] * Joins: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP)
  2730. # [18:30] * Joins: jdover (jdover@moz-652DFBB2.lightspeed.austtx.sbcglobal.net)
  2731. # [18:30] <jmaher> erahm: look here: http://trychooser.pub.build.mozilla.org/, you can restrict a platform to a specific version
  2732. # [18:31] * Quits: ckerschb_ (anonymous@moz-5809BBE.adsl.highway.telekom.at) (Quit: ckerschb_)
  2733. # [18:31] * Joins: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP)
  2734. # [18:32] <erahm> jmaher: ah I see, although in this case I want all of them :) I'm assuming talos doesn't run on b2g though, right?
  2735. # [18:32] * Quits: skeuomorf (skeuomorf@4648CCEB.19A4B30C.78B20577.IP) (Quit: leaving)
  2736. # [18:32] <mikedeboer> bholley: so 1) make one of the methods in that in-chrome script return an Error right away, 2) make a button in the in-content ui call that method when I click and 3) dump the error to the console in the result handler Function in-content
  2737. # [18:32] * Joins: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com)
  2738. # [18:32] <jmaher> erahm: correct, only desktop and android
  2739. # [18:32] * Quits: Jerry_Mac (hshih@moz-B0544DC3.dynamic.kbronet.com.tw) (Ping timeout)
  2740. # [18:32] * Quits: emtwo (Adium@moz-BC06FF4A.hsd1.ca.comcast.net) (Quit: Leaving.)
  2741. # [18:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a50ef251a2ab - Lucas Rocha - Bug 1073066 - Use consistent grey tone in reader mode (r=margaret)
  2742. # [18:32] <bholley> mikedeboer: when I do this:
  2743. # [18:32] <bholley> var sb = new Cu.Sandbox('http://www.example.com'); var err = new sb.Error(); err.lineNumber = 42; console.log(err.wrappedJSObject.lineNumber);
  2744. # [18:32] <bholley> mikedeboer: I get '1'
  2745. # [18:32] <bholley> mikedeboer: not '42'
  2746. # [18:32] * Joins: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net)
  2747. # [18:32] <jmaher> erahm: you can select win32 for the platform and it will run talos on winxp, win7, win8
  2748. # [18:34] <mikedeboer> bholley: checking...
  2749. # [18:35] <RyanVM> rstrong: ping
  2750. # [18:35] <rstrong> RyanVM: yes?
  2751. # [18:35] * Quits: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  2752. # [18:35] * Quits: grobinson (grobinson@C8D79944.CB3251F2.284344F5.IP) (Ping timeout)
  2753. # [18:35] * Quits: jdover (jdover@moz-652DFBB2.lightspeed.austtx.sbcglobal.net) (Quit: Computer has gone to sleep.)
  2754. # [18:35] <RyanVM> rstrong: I'm hearing rumors that your push to inbound may warrant an m-c transplant and nightly respin?
  2755. # [18:35] * Joins: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com)
  2756. # [18:36] <RyanVM> but I haven't heard anything definitive...
  2757. # [18:36] * Joins: grobinson (grobinson@C8D79944.CB3251F2.284344F5.IP)
  2758. # [18:36] * Quits: amoghbl1 (Thunderbir@19E7E885.6ABDE3A6.8B6C1D65.IP) (Ping timeout)
  2759. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/74871c4df0a7 - Bobby Holley - Bug 987794 - Don't unwrap XrayWrappers in HasPropertyOnPrototype. r=bz
  2760. # [18:36] * Joins: jdover (jdover@moz-652DFBB2.lightspeed.austtx.sbcglobal.net)
  2761. # [18:36] * luke is now known as luke-lunch
  2762. # [18:37] <rstrong> RyanVM: if we are in need of l10n builds for today. In the past we typically just live without them.
  2763. # [18:37] <RyanVM> k, nobody's specifically asked for them, so I'm not going to worry about it
  2764. # [18:37] <rstrong> RyanVM: who did you hear that from?
  2765. # [18:37] <mikedeboer> bholley: 44, the line that says `let obj = new targetWindow.Error();`
  2766. # [18:37] <RyanVM> Callek made a passing mention of it in #releng
  2767. # [18:37] * Quits: mt_ (mt@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  2768. # [18:37] <erahm> jmaher: I see xperf (although it's only for w7), tp5. Is g1 a good scroll test?
  2769. # [18:37] * Quits: jdover (jdover@moz-652DFBB2.lightspeed.austtx.sbcglobal.net) (Quit: Computer has gone to sleep.)
  2770. # [18:38] * Joins: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP)
  2771. # [18:38] <rstrong> I wouldn't worry unless there is an actual need for m-c l10n builds just as we did in the past
  2772. # [18:38] * Fallen|away is now known as Fallen
  2773. # [18:38] <Callek> RyanVM: I've seen at least 5 untargetted pings since v2 signing landed about "why is my build old"
  2774. # [18:38] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  2775. # [18:38] <Callek> RyanVM: that said, no-one of them seemed worried when I pointed out the bug #
  2776. # [18:38] * Joins: zimio (zimio@moz-D52819E1.mullvad.net)
  2777. # [18:38] * Joins: mt_ (mt@moz-62518563.mtv2.mozilla.com)
  2778. # [18:38] <bholley> mikedeboer: right. And nothing happens when you set lineNumber to some other random number
  2779. # [18:38] <RyanVM> Callek: I really don't care one way or the other, I'll do ask I'm asked
  2780. # [18:38] <bholley> mikedeboer: this is what I'm saying
  2781. # [18:39] <RyanVM> but I'd like someone to ask "soon" if they do
  2782. # [18:39] * Quits: Enn (enn@FCCEA34F.7672369.D8E68FF6.IP) (Ping timeout)
  2783. # [18:39] <mikedeboer> bholley: and 'fileName' says 'resource:///modules/loop/MozLoopAPI.jsm', the chrome file
  2784. # [18:39] <bholley> mikedeboer: because the property sets don't get forwarded past the XrayWrapper unless you waive
  2785. # [18:39] <Callek> RyanVM: sure, just clarifying that there was "interest" just no-one has specifically asked for it
  2786. # [18:39] <rstrong> Callek: it will right itself after m-i is merged to m-c after the next nightly
  2787. # [18:39] * Callek doesn't use OSX or Nightlies, or non-en-US so I'm not the demographic that personally cares
  2788. # [18:39] <bholley> mikedeboer: which is why, if you want to edit those properties on the underlying object, you need to do Cu.waiveXrays
  2789. # [18:39] <Callek> rstrong: indeed
  2790. # [18:39] * sheppy is now known as sheppy-lunch
  2791. # [18:39] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  2792. # [18:39] <jmaher> erahm: -t all is not too many tests, but tp5, x, svg are good ones
  2793. # [18:40] <mikedeboer> bholley: ok, got it. checking...
  2794. # [18:40] * Joins: ehugg (ehugg@5FE3526B.709C0A2A.6157E88D.IP)
  2795. # [18:40] * Joins: Jerry_Mac (hshih@moz-B0544DC3.dynamic.kbronet.com.tw)
  2796. # [18:42] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  2797. # [18:42] * Quits: gaurav0x (gaurav_rai@8AFFBE4A.1BEAF57F.40CEB881.IP) (Quit: Leaving)
  2798. # [18:43] <erahm> jmaher: thanks! Am I correct in assuming the results will roll into tbpl as they're run?
  2799. # [18:44] <jmaher> erahm: the try job will show the results when you click on it; there are other tools that can help compare those results to tip
  2800. # [18:44] <mikedeboer> bholley: it started working when I passed a property descriptor to defineProperty()
  2801. # [18:44] <mikedeboer> bholley: ;)
  2802. # [18:44] <bholley> mikedeboer: oh, doh!
  2803. # [18:44] <bholley> mikedeboer: sorry, I'm doing too many things at once
  2804. # [18:45] * Joins: bsmedberg (bsmedberg@moz-820FF4CB.jst.pa.atlanticbb.net)
  2805. # [18:45] * ChanServ sets mode: +o bsmedberg
  2806. # [18:45] <erahm> jmaher: Perfect!
  2807. # [18:45] * Joins: amoghbl1 (Thunderbir@19E7E885.6ABDE3A6.8B6C1D65.IP)
  2808. # [18:45] <mikedeboer> bholley: well, in the end we gots it working! Long live waiveXrays!
  2809. # [18:45] * chmanchester is now known as chmanchester|afk
  2810. # [18:45] <bholley> mikedeboer: the defineProperty part is important to avoid triggering setters
  2811. # [18:46] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2812. # [18:46] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2813. # [18:47] <sfink> bholley: what's the right way to initialize an AutoJSAPI from within nsDOMFileReader (::DoOnLoadEnd, in this case)?
  2814. # [18:47] <sfink> bholley: GetOwner() returns nullptr. As does GetParentObject().
  2815. # [18:47] <mikedeboer> bholley: yes, I kept the descriptor defaults (all writable & configurable = false) and flipped enumerable to `true`
  2816. # [18:47] <sfink> bholley: this->mozilla::DOMEventTargetHelper::GetParentObject() returns something useful.
  2817. # [18:47] <sfink> but that seems a little funky, and I don't really know what I'm supposed to be doing here
  2818. # [18:47] * Quits: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Quit: Leaving.)
  2819. # [18:48] * armenzg is now known as armenzg_lunch
  2820. # [18:48] * Quits: grobinson (grobinson@C8D79944.CB3251F2.284344F5.IP) (Input/output error)
  2821. # [18:48] * kats-afk is now known as kats
  2822. # [18:49] * Joins: badescunicu (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  2823. # [18:49] <bholley> sfink: uh
  2824. # [18:50] <bholley> sfink: I don't know the specifics of how that class is set up. It seems odd that one returns null but the other doesn't
  2825. # [18:50] <bholley> sfink: I don't have time to look
  2826. # [18:50] <sfink> bholley: ok, I'll force you to look when I finish this up enough for review. :-)
  2827. # [18:50] * bajaj1 is now known as bajaj
  2828. # [18:50] * Quits: catalinb (catalinb@590D2376.7E118222.89C0DD0D.IP) (Quit: This computer has gone to sleep)
  2829. # [18:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4a837d6936a0 - Brian Nicholson - Bug 1076438 - Undo ID and imageurl/bgcolor cursor changes. r=lucasr
  2830. # [18:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/279afba13f4c - Brian Nicholson - Bug 1076438 - Add tracking ID to SuggestedSites API. r=lucasr
  2831. # [18:51] * FuzzyFox|afk is now known as FuzzyFox
  2832. # [18:51] * RyanVM is now known as RyanVM|sheriffduty
  2833. # [18:51] * Joins: sheeri_ (sheeri@moz-DB4A9C19.scl3.mozilla.com)
  2834. # [18:52] * catlee-lunch is now known as catlee
  2835. # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=7bbb6d89b24f - 35 changesets
  2836. # [18:52] * Joins: ashughes (uid34327@moz-E77DEB21.irccloud.com)
  2837. # [18:53] * Quits: sheeri_ (sheeri@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  2838. # [18:53] * Quits: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net) (Quit: Leaving.)
  2839. # [18:53] * Joins: sheeri_ (sheeri@moz-DB4A9C19.scl3.mozilla.com)
  2840. # [18:53] <mikedeboer> bholley: interesting side-effect, though, that passing the message string to the constructor 'just works'
  2841. # [18:53] <@smaug> sfink: oh, that is FileReader coming from some js component?
  2842. # [18:53] * Quits: sheeri_ (sheeri@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  2843. # [18:53] <mikedeboer> bholley: anyway, thanks so much for taking the time to help out!!
  2844. # [18:53] <sfink> smaug: uh, probably? It's definitely in a js component.
  2845. # [18:53] <@smaug> not any FileReader from a web page
  2846. # [18:54] <@smaug> ok, then this makes sense
  2847. # [18:54] <sfink> smaug: yes, I think it's for OS.File
  2848. # [18:54] * Quits: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca) (Quit: Leaving.)
  2849. # [18:54] <@smaug> DETH objects are bound to an owner in case they are used in Window context
  2850. # [18:54] * Joins: juanb (jbecerra@moz-62518563.mtv2.mozilla.com)
  2851. # [18:54] * Quits: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP) (Ping timeout)
  2852. # [18:54] <sfink> "DETH"?
  2853. # [18:54] <bholley> mikedeboer: yeah, that is expected
  2854. # [18:55] <sfink> oh, DOMEventTargetHelper
  2855. # [18:55] <@smaug> yup
  2856. # [18:55] <@smaug> but we could change the setup a bit
  2857. # [18:55] <bholley> mikedeboer: and probably the better way to do it in the situations where it's possible
  2858. # [18:55] <@smaug> GetParentObject could return DETH::mParentObject
  2859. # [18:55] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  2860. # [18:55] <@smaug> not GetOwner()
  2861. # [18:55] <bholley> mikedeboer: oh!
  2862. # [18:55] <bholley> mikedeboer: looks like https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
  2863. # [18:55] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  2864. # [18:56] <bholley> mikedeboer: I didn't know you could also pass filename and linenumber to the constructor
  2865. # [18:56] <@smaug> how does one even create FileReader without a Window
  2866. # [18:56] <bholley> mikedeboer: that's a better way to do it
  2867. # [18:56] <@smaug> do we expose it to js component scopes
  2868. # [18:56] <bholley> mikedeboer: though I guess if you want to propagate column and stack, you'll need to the waiving anyway
  2869. # [18:56] <bholley> anyway
  2870. # [18:56] * bholley heads out
  2871. # [18:56] * Quits: bholley (bholley@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Textual IRC Client: www.textualapp.com)
  2872. # [18:56] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  2873. # [18:56] * Quits: tromey (tromey@514D186.F3BBB17D.144F44FA.IP) (Ping timeout)
  2874. # [18:57] * Quits: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Client exited)
  2875. # [18:57] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  2876. # [18:57] * Joins: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2877. # [18:57] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  2878. # [18:58] * justindarc is now known as justindarc|lunch
  2879. # [18:58] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  2880. # [18:59] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  2881. # [18:59] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2882. # [18:59] * Quits: Honza (chatzilla@514D186.F3BBB17D.144F44FA.IP) (Ping timeout)
  2883. # [18:59] * Joins: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com)
  2884. # [18:59] * Joins: erahm (Adium@moz-17FCFAE5.war.clearwire-wmx.net)
  2885. # [18:59] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  2886. # [18:59] <sfink> smaug: http://dxr.mozilla.org/mozilla-central/source/toolkit/modules/PropertyListUtils.jsm#104
  2887. # [19:00] * coop|buildduty is now known as coop|afk
  2888. # [19:00] * khuey is now known as khuey|away
  2889. # [19:00] * edmorley|mtg is now known as edmorley
  2890. # [19:00] <mwargers> It seems like current trunk build is just quitting instead of showing a crash dialog
  2891. # [19:00] * gregglind_away is now known as gregglind
  2892. # [19:01] * Joins: jet (jet@moz-62518563.mtv2.mozilla.com)
  2893. # [19:02] * Quits: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  2894. # [19:02] * Quits: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  2895. # [19:02] * Joins: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net)
  2896. # [19:02] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2897. # [19:02] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  2898. # [19:03] * Quits: harth (harth@88F51059.F3BBB17D.144F44FA.IP) (Input/output error)
  2899. # [19:03] * Joins: jduell_bbl (jduell@moz-D7F78D4E.hsd1.wa.comcast.net)
  2900. # [19:03] * lmandel_afk is now known as lmandel
  2901. # [19:04] <mwargers> is breakpad integration broken in current trunk build?
  2902. # [19:04] * Joins: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP)
  2903. # [19:04] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  2904. # [19:04] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2905. # [19:04] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  2906. # [19:05] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  2907. # [19:05] * ChanServ sets mode: +o ehsan
  2908. # [19:05] * lth|dinner is now known as lth
  2909. # [19:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4c05532b6342 - Martin Thomson - Bug 1072382 - Remove version intolerance marker on inappropriate_fallback alert, r=keeler
  2910. # [19:06] <mwargers> ok, now I'm pretty sure crash reporting is broken in trunk builds. Is there already a bug filed?
  2911. # [19:06] * Joins: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP)
  2912. # [19:06] * Quits: jaoo (user@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net) (Client exited)
  2913. # [19:07] * coop|afk is now known as coop|buildduty
  2914. # [19:07] * jcranmer|away is now known as jcranmer
  2915. # [19:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b212e3c4cbf5 - William Lachance - Bug 1073697 - mozversion should accept binary_path without .exe extension on windows;r=davehunt
  2916. # [19:08] * Joins: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net)
  2917. # [19:08] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  2918. # [19:08] * mdoglio|mtg is now known as mdoglio
  2919. # [19:08] * mdas|afk is now known as mdas
  2920. # [19:08] * davidb|afk is now known as davidb
  2921. # [19:09] * Joins: Sushant94 (Sushant@BF413162.7039D15E.D30E9BEF.IP)
  2922. # [19:09] * Quits: mikeratcliffe (Adium@514D186.F3BBB17D.144F44FA.IP) (Quit: Leaving.)
  2923. # [19:09] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2924. # [19:09] * Quits: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP) (Ping timeout)
  2925. # [19:10] * Joins: lduros (user@moz-A888D5F1.phlapa.fios.verizon.net)
  2926. # [19:10] * Quits: sheeri (sheeri@moz-DB4A9C19.scl3.mozilla.com) (Quit: Lost terminal)
  2927. # [19:11] * Joins: mikeratcliffe (Adium@514D186.F3BBB17D.144F44FA.IP)
  2928. # [19:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fb353d80bc49 - Jonathan Griffin - Bug 997909 - Make waitFor actually terminate if condition is never true, r=mdas
  2929. # [19:11] * Quits: ehugg (ehugg@5FE3526B.709C0A2A.6157E88D.IP) (Quit: ehugg)
  2930. # [19:12] <@smaug> ted: see mwargers' question
  2931. # [19:12] * Quits: bajaj (bajaj_afk@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  2932. # [19:12] <mwargers> ted, smaug, just filed bug 1076977
  2933. # [19:13] * Quits: gokce (gokce@AD8CCAFD.55DBA505.232D870F.IP) (Quit: Konversation terminated!)
  2934. # [19:13] * Joins: emtwo (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2935. # [19:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dd61c51e957c - Jonathan Griffin - Bug 1074508 - Add non-universal mozconfig for OSX mulet, r=mshal
  2936. # [19:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/33d32cb9b772 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  2937. # [19:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/82c3cd1b72c6 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2938. # [19:13] <@smaug> sfink: right. Somewhat annoying case
  2939. # [19:14] <@smaug> I think we should expose FileReader to js component scope, and then return mParentObject
  2940. # [19:14] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  2941. # [19:14] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  2942. # [19:14] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=b85c260821ab - 42 changesets
  2943. # [19:14] * Quits: nl (chatzilla@moz-29D843ED.net151.n37.ru) (Ping timeout)
  2944. # [19:15] * Joins: bajaj (bajaj_afk@moz-24157589.mtv2.mozilla.com)
  2945. # [19:15] * Quits: alexbardas (alexbardas@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  2946. # [19:15] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  2947. # [19:15] * Joins: larsg (larsg@moz-5DD47E4E.dip0.t-ipconnect.de)
  2948. # [19:15] * Quits: larsg (larsg@moz-5DD47E4E.dip0.t-ipconnect.de) (Connection reset by peer)
  2949. # [19:16] * Quits: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP) (Ping timeout)
  2950. # [19:16] * Quits: ddamjano (Instantbir@1353B85B.E2FAE8EF.FE3ECA2F.IP) (Ping timeout)
  2951. # [19:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=98fd84e46f10 - 80 changesets
  2952. # [19:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=a6fe13b6d0e9 - 162 changesets
  2953. # [19:17] <@smaug> sfink: or, perhaps no need to expose the constructor to js component scope, but if the FileReader doesn't have a parent object when wrapObject is called, take the parent object from the JScontext
  2954. # [19:17] * Quits: Bebe (Bebe@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Client exited)
  2955. # [19:17] * chmanchester|afk is now known as chmanchester
  2956. # [19:17] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  2957. # [19:18] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2958. # [19:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=948719006fe8 - 155 changesets
  2959. # [19:19] * wlach is now known as wlunch
  2960. # [19:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1babd65ebec7 - Patrick McManus - bug 1076129 generate event on socket transport cancelation r=sworkman
  2961. # [19:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/086fe4b0ba14 - Patrick McManus - bug 1003448 - HTTP/2 Alternate Service and Opportunistic Security [1/2 PSM] r=keeler
  2962. # [19:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3034162ee435 - Patrick McManus - bug 1003448 - HTTP/2 Alternate Service and Opportunistic Security [2/2 necko] r=hurley
  2963. # [19:19] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  2964. # [19:19] * Joins: nl (chatzilla@moz-29D843ED.net151.n37.ru)
  2965. # [19:20] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2966. # [19:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  2967. # [19:20] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  2968. # [19:20] <sfink> smaug: I only dimly understand what the words you are saying mean. I was just trying to delay creation of an ArrayBuffer until DoOnLoadEnd. And using AutoSafeJSContext for my cx was resulting in an extra layer of wrapping. (I saw an xray where previously it had a direct object.)
  2969. # [19:20] <sfink> smaug: using AutoJSAPI with this->DETH::GetParentObject() *did* work, however
  2970. # [19:21] <sfink> I don't know what wrapObject is nor when it gets called in the lifecycle
  2971. # [19:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cabd17a5837a - Stephen Pohl - Bug 1075691: The GreD for XPCOM-using subprocesses on OSX needs to change due to the v2 signature changes. r=bsmedberg
  2972. # [19:21] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  2973. # [19:21] * jimm-lunch is now known as jimm
  2974. # [19:22] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  2975. # [19:22] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  2976. # [19:22] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  2977. # [19:22] * kats is now known as kats-afk
  2978. # [19:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  2979. # [19:23] * Joins: ehugg (ehugg@moz-DF596D87.mycingular.net)
  2980. # [19:23] * Joins: bgrins (bgrins@7E8AA8DE.F0598F12.7E5C23C9.IP)
  2981. # [19:23] * Quits: mikeratcliffe (Adium@514D186.F3BBB17D.144F44FA.IP) (Quit: Leaving.)
  2982. # [19:24] <@smaug> sfink: hmm, ok. Let me check where that mParentObject is set
  2983. # [19:25] * Quits: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP) (Connection reset by peer)
  2984. # [19:25] <@ted> mwargers: that would surprise me, given that we have tests
  2985. # [19:25] * Fallen is now known as Fallen|away
  2986. # [19:25] <@ted> although not really for the crash reporter i guess
  2987. # [19:26] <@ted> mwargers: ah, if this is on mac then it's likely fallout from the mac layour changes
  2988. # [19:26] <@ted> layout
  2989. # [19:26] <mwargers> ted, ok, well, I don't get a crash reporter in the latest Nightly, at least
  2990. # [19:26] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Quit: rkent)
  2991. # [19:26] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  2992. # [19:27] <@ted> https://bugzilla.mozilla.org/show_bug.cgi?id=1047584
  2993. # [19:27] <@ted> probably a regression from that
  2994. # [19:27] <@smaug> sfink: ah, filereader does BindToOwner(xpc::GetNativeForGlobal(xpc::PrivilegedJunkScope())); by default
  2995. # [19:27] <@smaug> sfink: so using DETH::GetParentObject here is fine
  2996. # [19:27] <@smaug> a bit odd, but does return a sane object
  2997. # [19:27] <sfink> \o/
  2998. # [19:27] <sfink> I'll take your word for it
  2999. # [19:27] * Joins: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3000. # [19:27] * luke-lunch is now known as luke
  3001. # [19:27] <sfink> thank you!
  3002. # [19:28] * Joins: Archaeopteryx (itsme@moz-E5C96939.cust.telecolumbus.net)
  3003. # [19:29] * Quits: badescunicu (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Quit: badescunicu)
  3004. # [19:29] * Joins: lpy_ (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3005. # [19:29] * Quits: sabbir_alam_ufo (sabbir_ala@C80A391C.4118ED39.A6AA572A.IP) (Quit: Leaving)
  3006. # [19:29] * justindarc|lunch is now known as justindarc
  3007. # [19:29] * Quits: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3008. # [19:30] * Joins: system64 (uid17738@moz-A42E5B7B.irccloud.com)
  3009. # [19:31] * Joins: sheeri (sheeri@moz-DB4A9C19.scl3.mozilla.com)
  3010. # [19:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/7b8254083c17 - Justin Dolske - Bug 1076943 - forget icon has white border (non-transparent background). r=jaws
  3011. # [19:31] * Quits: lpy_ (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3012. # [19:31] * Quits: Jerry_Mac (hshih@moz-B0544DC3.dynamic.kbronet.com.tw) (Quit: Leaving)
  3013. # [19:32] * jdm is now known as jdm|away
  3014. # [19:33] * Quits: mdas (mdas@FCCEA34F.7672369.D8E68FF6.IP) (Ping timeout)
  3015. # [19:33] * Joins: mdas (mdas@FCCEA34F.7672369.D8E68FF6.IP)
  3016. # [19:33] * Joins: catalinb (catalinb@68971924.25BB8B1D.D602D2C5.IP)
  3017. # [19:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/13ba124946bd - Nicolas Silva - Bug 1074378 - Blocklist driver Intel GMAX4500HD v 8,15,10,1749. r=Bas
  3018. # [19:33] * Joins: djvj (kvijayan@moz-DB4A9C19.scl3.mozilla.com)
  3019. # [19:34] * Joins: mdas_ (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  3020. # [19:34] * Quits: jet (jet@moz-62518563.mtv2.mozilla.com) (Quit: jet)
  3021. # [19:35] * Quits: mdas (mdas@FCCEA34F.7672369.D8E68FF6.IP) (Ping timeout)
  3022. # [19:35] * Quits: nl (chatzilla@moz-29D843ED.net151.n37.ru) (Connection reset by peer)
  3023. # [19:35] * Quits: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net) (Quit: sicking)
  3024. # [19:36] * Quits: bgrins (bgrins@7E8AA8DE.F0598F12.7E5C23C9.IP) (Ping timeout)
  3025. # [19:36] * Joins: jet (jet@moz-62518563.mtv2.mozilla.com)
  3026. # [19:36] * Joins: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP)
  3027. # [19:36] * Joins: nl (chatzilla@moz-29D843ED.net151.n37.ru)
  3028. # [19:37] * armenzg_lunch is now known as armenzg
  3029. # [19:37] * mdas_ is now known as mdas
  3030. # [19:37] * khuey|away is now known as khuey
  3031. # [19:38] <ack> RyanVM|sheriffduty: i got rnewman to r+ on this https://bugzilla.mozilla.org/show_bug.cgi?id=1074640
  3032. # [19:38] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  3033. # [19:39] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/e6104aae6991 - Tim Taubert - Bug 1074743 - Forward display pixel values to screen proxies r=jimm a=sylvestre
  3034. # [19:39] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/271f027abcc5 - Justin Dolske - Bug 1076943 - forget icon has white border (non-transparent background). r=jaws a=dolske
  3035. # [19:40] * Quits: spohl (Adium@moz-73769B6F.reverse.softlayer.com) (Quit: Leaving.)
  3036. # [19:40] * Joins: ckerschb_ (anonymous@moz-518D2521.adsl.highway.telekom.at)
  3037. # [19:42] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/fa58aaa6863e - Tim Taubert - Bug 1074743 - Forward display pixel values to screen proxies r=jimm a=sylvestre
  3038. # [19:42] * Joins: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP)
  3039. # [19:42] * Joins: spohl (Adium@moz-73769B6F.reverse.softlayer.com)
  3040. # [19:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/37a6608adc23 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  3041. # [19:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/eebf1b565ed3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3042. # [19:43] * Joins: grobinson (grobinson@3E97C654.AD2B1C3F.284344F5.IP)
  3043. # [19:44] * Quits: Florent (Thunderbir@514D186.F3BBB17D.144F44FA.IP) (Quit: Florent)
  3044. # [19:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/762c775b242a - Ryan VanderMeulen - Bug 1025040 - Disable test_single_finger_desktop.py on Windows for frequent failures.
  3045. # [19:46] * wlunch is now known as wlach
  3046. # [19:46] * Joins: alexbardas (alexbardas@moz-62518563.mtv2.mozilla.com)
  3047. # [19:48] * baku is now known as baku|away
  3048. # [19:49] * Quits: ferjm (textual@moz-59EC96AD.red-2-139-18.dynamicip.rima-tde.net) (Quit: Textual IRC Client: www.textualapp.com)
  3049. # [19:49] * sheppy-lunch is now known as sheppy
  3050. # [19:49] * Quits: davispuh (quassel@44AEFB1D.4605F0B6.D1BFA94D.IP) (Input/output error)
  3051. # [19:49] * Quits: grobinson (grobinson@3E97C654.AD2B1C3F.284344F5.IP) (Ping timeout)
  3052. # [19:52] * Joins: grobinson (grobinson@3E97C654.AD2B1C3F.284344F5.IP)
  3053. # [19:52] <erahm> bsmedberg: ping
  3054. # [19:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/944246c0d39f - Camilo Viecco - Bug 1075081 - Enhance pinning test to ensure the neterror page the one found. r=keeler
  3055. # [19:52] <@bsmedberg> erahm: pong
  3056. # [19:52] * Joins: davispuh (quassel@44AEFB1D.4605F0B6.D1BFA94D.IP)
  3057. # [19:52] <erahm> bsmedberg: you have a sec to look at https://bugzilla.mozilla.org/show_bug.cgi?id=1074415 ? Or can you recommend someone else to look at it?
  3058. # [19:53] <@bsmedberg> erahm: gfritzsche or jschoenick could... I might be able to get to it today, but today's running away quickly :-(
  3059. # [19:54] <erahm> bsmedberg: no worries, I'll switch to one of them. FWIW it's 4 lines :)
  3060. # [19:54] * Joins: kip (kip@9D222422.D1155E2C.CFC2A289.IP)
  3061. # [19:56] * Quits: Ms2ger (Ms2ger@9E7F1259.CA89C307.187A1082.IP) (Quit: nn)
  3062. # [19:57] * Joins: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP)
  3063. # [19:57] * Quits: davispuh (quassel@44AEFB1D.4605F0B6.D1BFA94D.IP) (Connection reset by peer)
  3064. # [19:58] * Quits: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3065. # [19:58] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  3066. # [19:58] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  3067. # [19:58] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3068. # [19:58] * lmandel is now known as lmandel_afk
  3069. # [19:58] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  3070. # [19:59] * FuzzyFox is now known as FuzzyFox|afk
  3071. # [20:00] <rillian> RyanVM|sheriffduty: It's taking too long to get the remaining patches in the libvpx update to build. I'd like to back out the partial update I landed earlier.
  3072. # [20:00] <rillian> I did 'hg backout' for each of the offending commits.
  3073. # [20:00] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  3074. # [20:00] <rillian> is that the right thing to do? should I fold them before pushing?
  3075. # [20:00] * Joins: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3076. # [20:01] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  3077. # [20:01] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3078. # [20:02] <RyanVM|sheriffduty> rillian: I usually use qbackout
  3079. # [20:02] <RyanVM|sheriffduty> and do it as one commit
  3080. # [20:02] * jduell_bbl is now known as jduell
  3081. # [20:02] * lmandel_afk is now known as lmandel
  3082. # [20:03] * Quits: ManishCloud (uid36524@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  3083. # [20:04] * Quits: zimio (zimio@moz-D52819E1.mullvad.net) (Quit: Logging out)
  3084. # [20:04] * Joins: JosiahOn1 (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  3085. # [20:04] * Joins: flod1 (flod@moz-E53191F9.retail.telecomitalia.it)
  3086. # [20:05] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  3087. # [20:05] * Quits: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  3088. # [20:06] * Quits: grobinson (grobinson@3E97C654.AD2B1C3F.284344F5.IP) (Ping timeout)
  3089. # [20:06] <rillian> RyanVM|sheriffduty: I don't have qbackout. Is qfolding the three patches equivalent?
  3090. # [20:06] <rillian> would you rather do it?
  3091. # [20:06] <RyanVM|sheriffduty> rillian: you can qfold
  3092. # [20:06] * Quits: Dexter (chatzilla@moz-870C3EA4.retail.telecomitalia.it) (Quit: ChatZilla 0.9.90.1 [Firefox 32.0.3/20140923175406])
  3093. # [20:06] <rillian> thanks
  3094. # [20:06] <RyanVM|sheriffduty> rillian: https://hg.mozilla.org/hgcustom/version-control-tools/file/547c718d8309/hgext/qbackout
  3095. # [20:07] <jduell> ehsan: ping
  3096. # [20:07] <@ehsan> jduell: yo
  3097. # [20:07] * ahal|lunch is now known as ahal
  3098. # [20:07] * Quits: flod1 (flod@moz-E53191F9.retail.telecomitalia.it) (Ping timeout)
  3099. # [20:08] <jduell> ehsan: so I need both a single-process and an e10s log. Do you know if the 'log' file you gave me is the single-process one, or is it just the parent log from an e10s run
  3100. # [20:08] <@ehsan> jduell: it was the parent
  3101. # [20:08] <jduell> (You would need to run single-process then "mv log log.singleprocess" to make that work. If you just ran single process then e10s, the 'log' file gets overwritten
  3102. # [20:08] <@ehsan> jduell: this time I was careful to only launch one browser)
  3103. # [20:09] <jduell> ehsan: so if you could run youtube.com in single process mode and send me that log too, I'll have a basis for comparisin
  3104. # [20:09] <@ehsan> I only ran one firefox process in e10s
  3105. # [20:09] <@ehsan> ok
  3106. # [20:09] <@ehsan> jduell: oh btw I cleared the cache too
  3107. # [20:09] <@ehsan> jduell: do you want the second log from the same profile?
  3108. # [20:09] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3109. # [20:09] <rillian> RyanVM|sheriffduty: I've installed it for next time
  3110. # [20:09] <jduell> ehsan: no, I only need 'log' from the single process run
  3111. # [20:10] <jduell> and thanks for clearing cache :)
  3112. # [20:10] <RyanVM|sheriffduty> rillian: cool :) - in this case, you would do |hg qbackout -e -s -r X:Y|
  3113. # [20:10] * lmandel is now known as lmandel_afk
  3114. # [20:10] <RyanVM|sheriffduty> that'll do them all in one commit and allow you to edit the commit message
  3115. # [20:11] <@ehsan> jduell: no problem! just a sec
  3116. # [20:11] * Quits: flo-retina (Instantbir@moz-25D49B0E.ip-37-59-48.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  3117. # [20:11] * Joins: badescunicu (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  3118. # [20:11] * Joins: billm (billm@moz-24157589.mtv2.mozilla.com)
  3119. # [20:12] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  3120. # [20:12] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3121. # [20:13] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  3122. # [20:13] * lmandel_afk is now known as lmandel
  3123. # [20:14] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3124. # [20:14] <jesup> RyanVM|sheriffduty: did you meen to NI me on bug 1073350?
  3125. # [20:14] * Joins: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com)
  3126. # [20:14] <jesup> s/meen/mean/
  3127. # [20:14] <RyanVM|sheriffduty> jesup: no, sorry
  3128. # [20:14] * Joins: kgrandon (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3129. # [20:14] <jesup> cleared
  3130. # [20:14] <RyanVM|sheriffduty> I was going to ask a question, but then didn't and forgot to uncheck
  3131. # [20:14] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Ping timeout)
  3132. # [20:15] <@ehsan> jduell: sent the second log
  3133. # [20:15] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3134. # [20:16] * Joins: gsvelto (gsvelto@moz-2311DF2B.clienti.tiscali.it)
  3135. # [20:16] * Joins: kgrandon1 (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3136. # [20:16] * Quits: kgrandon (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  3137. # [20:17] * Quits: catalinb (catalinb@68971924.25BB8B1D.D602D2C5.IP) (Quit: This computer has gone to sleep)
  3138. # [20:18] * Quits: erahm (Adium@moz-17FCFAE5.war.clearwire-wmx.net) (Quit: Leaving.)
  3139. # [20:19] * Quits: gsvelto (gsvelto@moz-2311DF2B.clienti.tiscali.it) (Ping timeout)
  3140. # [20:19] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc])
  3141. # [20:20] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  3142. # [20:20] * Quits: nl (chatzilla@moz-29D843ED.net151.n37.ru) (Ping timeout)
  3143. # [20:20] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  3144. # [20:22] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Ping timeout)
  3145. # [20:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/61588fcd074f - Ralph Giles - Bug 1063356 - Back out partial libvpx update. r=me
  3146. # [20:22] * Joins: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net)
  3147. # [20:23] * Quits: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP) (Quit: victorporof)
  3148. # [20:24] * Joins: catalinb (catalinb@68971924.25BB8B1D.D602D2C5.IP)
  3149. # [20:25] * kats-afk is now known as kats
  3150. # [20:25] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3151. # [20:27] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/ee3cd82e3acb - Xidorn Quan - Bug 1075336 - Fix lifetime management of CounterStyle. r=dbaron, a=sledru
  3152. # [20:28] * armenzg is now known as armenzg_brb
  3153. # [20:28] * Quits: janv (varga@moz-B791613F.dynamic.orange.sk) (Quit: This computer has gone to sleep)
  3154. # [20:29] * Joins: espadrine (espadrine@moz-60DCA723.w92-128.abo.wanadoo.fr)
  3155. # [20:29] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3156. # [20:29] * Joins: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP)
  3157. # [20:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/d79568d581e6 - Xidorn Quan - Bug 1075336 - Fix lifetime management of CounterStyle. r=dbaron, a=sledru
  3158. # [20:30] * Joins: drosdeck (usuario@4A1C46DA.76504782.4513742A.IP)
  3159. # [20:30] * Joins: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3160. # [20:30] * jdm|away is now known as jdm
  3161. # [20:30] * Joins: jdover (jdover@1DF8B26A.77D2F8F9.5922D950.IP)
  3162. # [20:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0d55b8666ca6 - Ralph Giles - Bug 1063327 - Reject vp9 frames with invalid tiles. r=kinetik
  3163. # [20:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/215212e08b53 - Xidorn Quan - Bug 1075336 - Fix lifetime management of CounterStyle. r=dbaron
  3164. # [20:32] * Quits: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3165. # [20:33] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3166. # [20:34] * Joins: davispuh (quassel@44AEFB1D.4605F0B6.D1BFA94D.IP)
  3167. # [20:34] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3168. # [20:34] * bc is now known as bc|bbiab
  3169. # [20:35] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3170. # [20:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fd8e58a613da - Eric Rahm - Bug 1074415 - Build error in nsNPAPIPluginInstance when enabling PR_LOGGING in non-debug builds. r=johns
  3171. # [20:36] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3172. # [20:36] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3173. # [20:38] * Quits: jchaulk (jchaulk@moz-16B31471.dsl.teksavvy.com) (Quit: Leaving.)
  3174. # [20:39] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  3175. # [20:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c66ae07991a7 - Joel Maher - Bug 1076990 - update talos.json on tip to capture mainthreadio and other talos cleanup. r=wlach
  3176. # [20:39] * Quits: funnel (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP) (Ping timeout)
  3177. # [20:40] * Joins: funnel (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP)
  3178. # [20:40] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  3179. # [20:40] * mdoglio is now known as mdoglio|afk
  3180. # [20:41] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3181. # [20:42] * Joins: geekboy (geekboy@moz-DB4A9C19.scl3.mozilla.com)
  3182. # [20:42] * Joins: dbaron (dbaron@moz-24157589.mtv2.mozilla.com)
  3183. # [20:42] * ChanServ sets mode: +ao dbaron dbaron
  3184. # [20:43] <rbarnes> bz: geez, give me two minutes!
  3185. # [20:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/24e0e6887228 - B2G Bumper Bot - Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
  3186. # [20:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3ee91aabf87a - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3187. # [20:44] <bz> rbarnes: Heh
  3188. # [20:44] * Joins: davidb (davidb@3379008A.E34415CA.B26385CC.IP)
  3189. # [20:44] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  3190. # [20:45] <rbarnes> i literally had them both open in neighboring tabs, and was about to click through to the other :)
  3191. # [20:45] <bz> rbarnes: Click faster!
  3192. # [20:45] * bz cracks the click-whip
  3193. # [20:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c91dddf4988b - Erik Vold - Bug 1075429 - Uplift Add-on SDK to Firefox
  3194. # [20:45] <rbarnes> any case, they're both done now
  3195. # [20:45] <bz> yep, I saw. Thanks
  3196. # [20:46] <bz> I assume this is because we're trying to backport some webcrypto stuff to Aurora?
  3197. # [20:46] <bz> Like enabling it??
  3198. # [20:46] * Quits: Optimizer (Optimizer@78368911.AF519A72.BE4CF869.IP) (Ping timeout)
  3199. # [20:46] * Joins: Optimizer (Optimizer@78368911.AF519A72.BE4CF869.IP)
  3200. # [20:47] * mattwoodrow|away is now known as mattwoodrow
  3201. # [20:47] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  3202. # [20:48] * FuzzyFox|afk is now known as FuzzyFox
  3203. # [20:48] * Quits: RealRaven (Thunderbir@8DB7637F.3D87C2A.C3498625.IP) (Ping timeout)
  3204. # [20:48] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3205. # [20:49] * Joins: RealRaven (Thunderbir@F0CB2CF.52078BA5.C3498625.IP)
  3206. # [20:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/07c5c1a301d2 - Richard Barnes - Bug 1074001 - Expose WebCrypto by default (remove pref dom.webcrypto.enabled) r=bz
  3207. # [20:52] * pmoore|away is now known as pmoore|buildduty
  3208. # [20:52] * pmoore|buildduty is now known as pmoore|away
  3209. # [20:52] * mcote is now known as mcote|biab
  3210. # [20:52] * Quits: ehugg (ehugg@moz-DF596D87.mycingular.net) (Quit: ehugg)
  3211. # [20:52] * Joins: Waldo (waldo@moz-62518563.mtv2.mozilla.com)
  3212. # [20:53] <rbarnes> bz: yep, just submitted the uplift request for 1074001
  3213. # [20:53] <rbarnes> bz: also, 1037892 disables a dangerous algorithm
  3214. # [20:53] * Quits: Boriss (Boriss@8F0C6026.9E6A15FD.157879EE.IP) (Quit: Boriss)
  3215. # [20:53] <rbarnes> bz: and wouldn't porting Nightly->Aurora be something like "forwardporting"?
  3216. # [20:54] <bz> rbarnes: "whatever"
  3217. # [20:54] * Quits: kgrandon1 (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  3218. # [20:54] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3219. # [20:55] * Joins: sir_none (Thunderbir@moz-91309803.goll.stat.salzburg-online.at)
  3220. # [20:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4b751d735154 - Alexandre Lissy - Bug 1010284 - Add radio tech mapping for MLS. r=garvank, sr=hannosch
  3221. # [20:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/262bb8e131fe - Sushil Chauhan - Bug 1074099 - Use GetLocalTransform api in LayerTreeInvalidation class. r=mattwoodrow
  3222. # [20:55] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  3223. # [20:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/32c885eeb5bc - Alexandre Lissy - Bug 1075405 - Use numItems to iterate mobile connection providers. r=echen
  3224. # [20:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/97974cf0eb91 - Ting-Yuan Huang - Bug 1075442 - Make the JS engine use gecko/build/stlport on Firefox OS. r=glandium
  3225. # [20:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/851353ac5769 - Kartikaya Gupta - Bug 1075750 - Follow-up to remove obsolete pref from b2g settings. r=nical
  3226. # [20:57] * Quits: ggp|away (ggp@9C103D0B.889A0501.4A9B002.IP) (Input/output error)
  3227. # [20:57] * lth is now known as lth|away
  3228. # [20:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/7dde79b5e40e - Nicolas Perriault - Bug 1047406 - Remove notifications in Loop conversation window. r=Standard8
  3229. # [20:58] * khuey is now known as khuey|away
  3230. # [20:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/248b7b6c41d5 - Mark Banner - Bug 972017 Part 3 - Finish the view flow transition for direct calling for Loop. r=nperriault
  3231. # [20:58] * philor is now known as philor|away
  3232. # [20:58] * Quits: ckerschb_ (anonymous@moz-518D2521.adsl.highway.telekom.at) (Quit: ckerschb_)
  3233. # [20:59] <RyanVM|sheriffduty> erahm: inbound bustage
  3234. # [20:59] * Quits: jet (jet@moz-62518563.mtv2.mozilla.com) (Quit: jet)
  3235. # [21:00] <erahm> RyanVM|sheriffduty: ugh, can you backout?
  3236. # [21:00] * Quits: nisargtha (nisargtha@184A9C57.286DC173.283C611A.IP) (Client exited)
  3237. # [21:00] <RyanVM|sheriffduty> erahm: k
  3238. # [21:00] <RyanVM|sheriffduty> erahm: It's Werror, fwiw
  3239. # [21:00] <RyanVM|sheriffduty> might be easier to just fix it?
  3240. # [21:01] <erahm> RyanVM|sheriffduty: link?
  3241. # [21:01] <RyanVM|sheriffduty> https://treeherder.mozilla.org/ui/#/jobs?repo=mozilla-inbound
  3242. # [21:02] <erahm> RyanVM|sheriffduty: I'm not seeing bustage
  3243. # [21:02] <RyanVM|sheriffduty> the red Bs at the top
  3244. # [21:02] <dholbert> erahm, https://tbpl.mozilla.org/php/getParsedLog.php?id=49423370&tree=Mozilla-Inbound
  3245. # [21:02] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5bebb0ca8e3c - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  3246. # [21:02] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/31af4315ffde - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3247. # [21:02] <dholbert> erahm, "nsNPAPIPluginInstance.cpp:564:13: error: variable 'error' set but not used [-Werror=unused-but-set-variable]"
  3248. # [21:03] <dholbert> erahm, presumably this means that we're not actually doing anything with the error (i.e. we're not logging it, though your bug probably presumes that we should be)
  3249. # [21:03] * Joins: ehugg (ehugg@C18DC441.B39A0FD5.3002A442.IP)
  3250. # [21:03] * Quits: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3251. # [21:04] <erahm> oh FFS
  3252. # [21:04] <dholbert> (maybe best to just back out & investigate, since it's a 4-line patch anyway? A bustage-fix wouldn't be any simpler than the original patch)
  3253. # [21:04] <erahm> this is what I was trying to fix
  3254. # [21:04] <dholbert> (unless you totally see the problem)
  3255. # [21:04] <erahm> RyanVM|sheriffduty: can you backout, it's not clear to me what combo of things is causing this
  3256. # [21:05] * Quits: davidb (davidb@3379008A.E34415CA.B26385CC.IP) (Quit: peace out)
  3257. # [21:05] * Joins: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com)
  3258. # [21:06] <dholbert> erahm, looks like you might want to be making things conditional on PLUGIN_LOGGING
  3259. # [21:06] <NeilAway> bsmedberg: is there a directory property key for the list of chrome.manifest files scanned for components and interfaces?
  3260. # [21:06] <dholbert> erahm, the usage of the variable is in a NPP_PLUGIN_LOG() line, which is only defined to do something if PLUGIN_LOGGING is defined
  3261. # [21:07] <@bsmedberg> NeilAway: in general no, we just start at the root chrome.manifest and traverse
  3262. # [21:07] <Mossop> There is one for the extension directories isn't there?
  3263. # [21:07] * dholbert is now known as dholbert|lunch
  3264. # [21:07] <NeilAway> bsmedberg: so extensions are registered manually?
  3265. # [21:08] <@bsmedberg> NeilAway: yes http://mxr.mozilla.org/mozilla-central/source/toolkit/xre/nsXREDirProvider.cpp#602
  3266. # [21:08] * Joins: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP)
  3267. # [21:08] * NeilAway apologises to Mossop as his window hadn't scrolled his followup into view
  3268. # [21:08] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  3269. # [21:08] * armenzg_brb is now known as armenzg_bbiab
  3270. # [21:09] * Quits: victorporof (victorporo@88F51059.F3BBB17D.144F44FA.IP) (Quit: victorporof)
  3271. # [21:09] <NeilAway> bsmedberg: ah, that gives me an idea, thanks!
  3272. # [21:09] <Mossop> NeilAway: Maybe http://mxr.mozilla.org/mozilla-central/source/xpcom/components/nsIComponentManager.idl#98 is of interest here?
  3273. # [21:10] * jlund is now known as jlund|lunch
  3274. # [21:10] <NeilAway> Mossop: line 81 suits me better still :-)
  3275. # [21:10] * Joins: mwu (mwu@522C27B5.F1EEB410.2E87E34F.IP)
  3276. # [21:10] * wlach is now known as wlach|mtg
  3277. # [21:10] <NeilAway> Mossop's on a roll today
  3278. # [21:10] * Quits: armenzg_bbiab (armenzg@moz-45D0CB1A.home3.cgocable.net) (Ping timeout)
  3279. # [21:10] <NeilAway> (maybe that's typical, I don't see him around much these days)
  3280. # [21:13] * Joins: lizzard (ehenry@moz-CDBDFCF5.dsl.static.fusionbroadband.com)
  3281. # [21:13] * juanb is now known as juanb|lunch
  3282. # [21:13] * geekboy is now known as geekboy|afk
  3283. # [21:13] * Quits: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3284. # [21:13] * Joins: ggp|away (ggp@moz-1A759BD2.wifi.ic.unicamp.br)
  3285. # [21:13] <jmaher> rhelmer: ping
  3286. # [21:14] * Quits: gozala (uid5923@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  3287. # [21:14] <rhelmer> jmaher: pong
  3288. # [21:14] * Joins: janv (varga@moz-B791613F.dynamic.orange.sk)
  3289. # [21:15] * ggp|away is now known as ggp
  3290. # [21:15] <jmaher> rhelmer: there are some graph server updates coming along- a couple of questions
  3291. # [21:15] <rhelmer> sure
  3292. # [21:15] <jmaher> rhelmer: 1) do you or somebody else need to review these?
  3293. # [21:15] * Quits: ehugg (ehugg@C18DC441.B39A0FD5.3002A442.IP) (Quit: ehugg)
  3294. # [21:15] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  3295. # [21:15] <jmaher> rhelmer: 2) can we deploy to graphs.allizom.org somehow, verify, then deploy to graphs.mozilla.org ?
  3296. # [21:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3498c7d6ed6c - B2G Bumper Bot - Bumping gaia.json for 8 gaia revision(s) a=gaia-bump
  3297. # [21:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/fa395080c792 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3298. # [21:15] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  3299. # [21:16] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  3300. # [21:16] <rhelmer> jmaher: hmm so graphs.allizom.org used to get prod snapshots of the db but that broke a while ago... I think you could make sure that your product(s) show up in the UI at least
  3301. # [21:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e0baa8287713 - Ryan VanderMeulen - Backed out changeset fd8e58a613da (bug 1074415) for Linux Werror bustage.
  3302. # [21:16] <rhelmer> jmaher: you can ask whoever is running the SQL to run on graphs.a.o first
  3303. # [21:17] <rhelmer> jmaher: I can review if you want, I am not too worried about those sorts of changes tbqh
  3304. # [21:17] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  3305. # [21:17] <rhelmer> jmaher: or did you mean features like bug 688534 ?
  3306. # [21:17] <jmaher> rhelmer: one is a UI difference, another modifies the table and data collection;
  3307. # [21:17] * Quits: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  3308. # [21:17] <jmaher> rhelmer: yeah, that one :)
  3309. # [21:18] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3310. # [21:18] <jmaher> rhelmer: andhttps://bugzilla.mozilla.org/show_bug.cgi?id=1021842
  3311. # [21:18] * Quits: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  3312. # [21:18] <rhelmer> jmaher: yeah I can review those if you want, as long as you or somebody working on this is reviewing I am ok w/ that too
  3313. # [21:18] <jmaher> rhelmer: so if we push a patch to graph repo, will it be live?
  3314. # [21:19] <rhelmer> jmaher: no, need to file a bug, I can deploy it
  3315. # [21:19] * Quits: ggp (ggp@moz-1A759BD2.wifi.ic.unicamp.br) (No route to host)
  3316. # [21:19] * Joins: ggp_ (ggp@moz-1A759BD2.wifi.ic.unicamp.br)
  3317. # [21:19] <MattN> so dev doesn't update automatically with a push?
  3318. # [21:20] <rhelmer> MattN: no not currently
  3319. # [21:20] <MattN> ok
  3320. # [21:20] <jduell> ehsan: your e10s log was missing info for the 1st youtube.com load. I think I found the issue and put up a new instrumentation patch. Would you mind applying it and re-running the logs? Probably best to re-run both single/e10s, since youtube.com's URI set changes with the weather
  3321. # [21:20] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  3322. # [21:20] <rhelmer> MattN: jmaher: why are we still working on graphserver instead of doing this on datazilla btw?
  3323. # [21:21] <rhelmer> graphserver hasn't really been worked on actively for years at this point
  3324. # [21:21] <@ehsan> jduell: ok, but can I do that later? I'm using the browser right now...
  3325. # [21:21] <jduell> ehsan: sure
  3326. # [21:21] <@ehsan> jduell: can you ni? me please?
  3327. # [21:21] <jduell> ehsan: ok
  3328. # [21:21] <@ehsan> jduell: thanks
  3329. # [21:21] <jmaher> rhelmer: datazilla is depreciated in place of treeherder, treeherder has 3+ months before we will have useful viewing of talos data
  3330. # [21:21] <MattN> rhelmer: my understanding is that datazilla stopped working for desktop some months ago
  3331. # [21:21] <rhelmer> oh ok I hadn't heard
  3332. # [21:22] * Quits: surkov (surkov@13F2CEC5.7672369.D8E68FF6.IP) (Quit: surkov)
  3333. # [21:22] <MattN> rhelmer: so I will push 688534 to HG then
  3334. # [21:22] <jmaher> rhelmer: yeah, so a few things to further the mission while not doing a lot of extra work
  3335. # [21:22] <rhelmer> jmaher: MattN: ok makes sense
  3336. # [21:22] * Quits: till (till@moz-E3DADFE5.adsl.alicedsl.de) (Input/output error)
  3337. # [21:22] * Quits: edmorley (uid27002@moz-5F4AA75A.irccloud.com) (Quit: )
  3338. # [21:22] * Joins: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP)
  3339. # [21:23] <rhelmer> MattN: cool, lmk when you are ready to update dev... if we're going to be hacking on it again we might want to get the prod->dev db snapshots working again
  3340. # [21:23] * Quits: bdahl (bdahl@moz-62518563.mtv2.mozilla.com) (Input/output error)
  3341. # [21:23] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  3342. # [21:24] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  3343. # [21:24] * Joins: mdas (mdas@moz-CFFBFDC4.cpe.teksavvy.com)
  3344. # [21:24] * Quits: ggp_ (ggp@moz-1A759BD2.wifi.ic.unicamp.br) (Ping timeout)
  3345. # [21:25] * Joins: Snuffleupagus (chatzilla@moz-50E31F78.bredband.comhem.se)
  3346. # [21:25] * hwine is now known as hwine-food
  3347. # [21:25] * Joins: ggp (ggp@moz-1A759BD2.wifi.ic.unicamp.br)
  3348. # [21:25] * Quits: ggp (ggp@moz-1A759BD2.wifi.ic.unicamp.br) (Connection reset by peer)
  3349. # [21:25] <MattN> rhelmer: I pushed it now
  3350. # [21:25] <rhelmer> MattN: cool
  3351. # [21:26] * Joins: ehugg (ehugg@C18DC441.B39A0FD5.3002A442.IP)
  3352. # [21:26] * Joins: ggp (ggp@moz-1A759BD2.wifi.ic.unicamp.br)
  3353. # [21:26] * Quits: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3354. # [21:26] <rhelmer> MattN: ok graphs.allizom.org code is updated
  3355. # [21:26] * Quits: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com) (Input/output error)
  3356. # [21:27] * mcote|biab is now known as mcote
  3357. # [21:27] <rhelmer> I don't know if any of the data on there is going to work though...
  3358. # [21:27] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  3359. # [21:27] * Quits: ggp (ggp@moz-1A759BD2.wifi.ic.unicamp.br) (Connection reset by peer)
  3360. # [21:28] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3361. # [21:28] * kats is now known as kats|away
  3362. # [21:28] <MattN> I can workaround that with an extension to redirect js/config.js to the config version
  3363. # [21:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/33eae4c3399e - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  3364. # [21:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2aac6a8f44c4 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3365. # [21:29] * Joins: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3366. # [21:29] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  3367. # [21:29] * flod is now known as flod|afk
  3368. # [21:29] * flod|afk is now known as flod|away
  3369. # [21:30] * FuzzyFox is now known as FuzzyFox|afk
  3370. # [21:30] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3371. # [21:30] * Joins: gokce (gokce@BB085765.12D04122.4DE73C5E.IP)
  3372. # [21:30] * Joins: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP)
  3373. # [21:30] <rhelmer> MattN: do you want me to point SERVER at prod? looks like API does "Access-Control-Allow-Origin: *" so should work
  3374. # [21:31] <MattN> that's what I do on my test server
  3375. # [21:31] * Joins: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3376. # [21:31] <rhelmer> ok will do so, sec
  3377. # [21:31] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3378. # [21:31] <MattN> thanks
  3379. # [21:31] <MattN> rhelmer: I also changed VHOST
  3380. # [21:31] * Joins: ggp (ggp@F2C489EF.67ED384F.3C093709.IP)
  3381. # [21:32] <rhelmer> MattN: yeah
  3382. # [21:32] <MattN> but not sure if that's necessary
  3383. # [21:32] <rhelmer> MattN: ok http://graphs.allizom.org/graph.html#tests=%5B%5B257,94,33%5D%5D&sel=none&displayrange=7&datatype=running wfm
  3384. # [21:32] <MattN> yep, wfm too. Thanks!
  3385. # [21:32] <rhelmer> MattN: in this case it's not, since graphs.mozilla.org is the vhost
  3386. # [21:32] <rhelmer> but it's handy to be able to override sometimes
  3387. # [21:33] * Quits: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3388. # [21:33] * Quits: lizzard (ehenry@moz-CDBDFCF5.dsl.static.fusionbroadband.com) (Ping timeout)
  3389. # [21:33] * Joins: tomatoeblue (textual@FCCEA34F.7672369.D8E68FF6.IP)
  3390. # [21:34] <rhelmer> jmaher: MattN: if you guys expect to be developing on this more actively lmk, I can set it up to auto-deploy etc
  3391. # [21:34] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3392. # [21:34] <MattN> I don't think it will be that much
  3393. # [21:34] <rhelmer> "deploy" is just "hg up"
  3394. # [21:34] <rhelmer> so it's quick in any case
  3395. # [21:34] <MattN> ok
  3396. # [21:34] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/041d2343dce5 - Ryan VanderMeulen - Backed out changeset 12ec3e08ee67 (bug 1042291) for crashtest-ipc hangs.
  3397. # [21:34] * Quits: tonymec (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3398. # [21:35] * Quits: jdover (jdover@1DF8B26A.77D2F8F9.5922D950.IP) (Quit: Computer has gone to sleep.)
  3399. # [21:35] * Quits: catalinb (catalinb@68971924.25BB8B1D.D602D2C5.IP) (Quit: This computer has gone to sleep)
  3400. # [21:36] * Joins: Boriss (Boriss@moz-BA625DEF.v250d.public.monkeybrains.net)
  3401. # [21:36] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  3402. # [21:37] * Quits: Archaeopteryx (itsme@moz-E5C96939.cust.telecolumbus.net) (Quit: Goodbye)
  3403. # [21:37] <jmaher> rhelmer: probably <5 total changes, maybe 1 or 2 quick fixes if we mess something up, so def <10 total changes
  3404. # [21:38] * Joins: nikkitousen (nikkitouse@moz-773C38E2.fbx.proxad.net)
  3405. # [21:38] <rhelmer> jmaher: k, well graphs is fairly dormant but I am around if you need anything
  3406. # [21:38] <jmaher> rhelmer: thanks!
  3407. # [21:39] <rhelmer> jmaher: np, just file a bug and/or ping me, I watch the component
  3408. # [21:39] * Quits: nikkitousen (nikkitouse@moz-773C38E2.fbx.proxad.net) (Quit: )
  3409. # [21:39] * Joins: nikkitousen (nikkitouse@moz-773C38E2.fbx.proxad.net)
  3410. # [21:39] * Quits: ehugg (ehugg@C18DC441.B39A0FD5.3002A442.IP) (Quit: ehugg)
  3411. # [21:39] * Joins: bdahl (bdahl@moz-62518563.mtv2.mozilla.com)
  3412. # [21:40] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  3413. # [21:41] <MattN> jmaher: so when were you thinking of deploying my change to prod?
  3414. # [21:41] <MattN> it's already been tested for a year on my server
  3415. # [21:41] * lmandel is now known as lmandel_afk
  3416. # [21:41] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  3417. # [21:41] * catlee is now known as catlee-away
  3418. # [21:41] * catlee-away is now known as catlee
  3419. # [21:42] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Ping timeout)
  3420. # [21:42] * Quits: gokce (gokce@BB085765.12D04122.4DE73C5E.IP) (Quit: Konversation terminated!)
  3421. # [21:42] * Joins: gokce (gokce@BB085765.12D04122.4DE73C5E.IP)
  3422. # [21:44] <jmaher> MattN: I guess soon, I am getting my patch ready for review, maybe a second one related to it; then just push them all at the same time
  3423. # [21:44] * Joins: smaug (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3424. # [21:44] * ChanServ sets mode: +o smaug
  3425. # [21:44] <MattN> ok
  3426. # [21:46] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  3427. # [21:46] * Quits: mdas (mdas@moz-CFFBFDC4.cpe.teksavvy.com) (Ping timeout)
  3428. # [21:46] * Quits: yvan (quassel@moz-EE24132A.members.linode.com) (Ping timeout)
  3429. # [21:47] * Joins: yvan (quassel@moz-EE24132A.members.linode.com)
  3430. # [21:47] * Joins: mdas (mdas@moz-CFFBFDC4.cpe.teksavvy.com)
  3431. # [21:48] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3432. # [21:48] * Joins: ggp_ (ggp@moz-1A759BD2.wifi.ic.unicamp.br)
  3433. # [21:49] * Quits: ggp (ggp@F2C489EF.67ED384F.3C093709.IP) (Ping timeout)
  3434. # [21:49] * Joins: nrc (nrc@34E8ECDF.DC2C3734.616A18A6.IP)
  3435. # [21:49] * Quits: Jackneill (Jackneill@moz-72841BFD.pool.digikabel.hu) (Input/output error)
  3436. # [21:50] * Joins: armenzg (armenzg@9CDB38D4.5F2BAC97.9BD5FA69.IP)
  3437. # [21:51] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  3438. # [21:51] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  3439. # [21:51] * Joins: ehugg (ehugg@moz-BEEECCC0.mycingular.net)
  3440. # [21:52] * Quits: @smaug (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3441. # [21:52] * KWierso|afk is now known as KWierso
  3442. # [21:53] * Joins: lizzard (ehenry@moz-CDBDFCF5.dsl.static.fusionbroadband.com)
  3443. # [21:53] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  3444. # [21:53] * ChanServ sets mode: +o smaug
  3445. # [21:53] * ggp_ is now known as ggp
  3446. # [21:53] * Quits: JosiahOn1 (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  3447. # [21:54] <mconley> ted: ping
  3448. # [21:54] * Quits: bdahl (bdahl@moz-62518563.mtv2.mozilla.com) (Input/output error)
  3449. # [21:54] <erahm> dholbert|lunch: I get the same error if I used PLUGIN_LOGGING https://tbpl.mozilla.org/?tree=Try&rev=7d2790d31a62
  3450. # [21:55] * nthomas|away is now known as nthomas
  3451. # [21:55] * Quits: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com) (Quit: )
  3452. # [21:55] * Joins: davidb (davidb@3379008A.E34415CA.B26385CC.IP)
  3453. # [21:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1adbc85fcfce - Ryan VanderMeulen - Backed out 3 changesets (bug 1076129, bug 1003448) for frequent xpcshell crashes on a CLOSED TREE.
  3454. # [21:59] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Input/output error)
  3455. # [22:00] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  3456. # [22:01] <gkw> bkerensa: dveditz is not likely the best person to answer your needinfos
  3457. # [22:02] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  3458. # [22:02] <gkw> bkerensa: I'd suggest first checking the regressing patch (and where it landed). If there is no regressing patch, set needinfo? from the patch author
  3459. # [22:02] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  3460. # [22:03] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  3461. # [22:04] * Quits: mt_ (mt@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  3462. # [22:05] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3463. # [22:05] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  3464. # [22:05] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  3465. # [22:06] <jmaher> erahm: did you have a try run with talos results? I could look over the results
  3466. # [22:07] <erahm> jmaher: yeah it's here: https://tbpl.mozilla.org/?tree=Try&rev=5dc90dc8178a
  3467. # [22:07] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  3468. # [22:08] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  3469. # [22:08] <jmaher> erahm: cool, I will leave the tab open until results come in
  3470. # [22:08] * wlach|mtg is now known as wlach
  3471. # [22:08] <erahm> jmaher: thanks!
  3472. # [22:08] <jmaher> erahm: the few results on linux are all good so far
  3473. # [22:09] * Joins: jfkthame (jfkthame@67F4BFC8.4CEA26B6.3E2A4E92.IP)
  3474. # [22:09] <erahm> jmaher: yeah that's what I was thinking, do you usually just look at the datazilla link or the "seconds" graph?
  3475. # [22:10] * Joins: flo-retina (Instantbir@moz-25D49B0E.ip-37-59-48.eu)
  3476. # [22:10] <jmaher> erahm: the second graph, I have a cli script that gets the data and compares it to trunk
  3477. # [22:11] <erahm> oh nice!
  3478. # [22:11] * khuey|away is now known as khuey
  3479. # [22:12] * Quits: wolfiR_ (wolfiR@moz-F7D46008.dip0.t-ipconnect.de) (Quit: Leaving)
  3480. # [22:12] <bkerensa> gkw: I was told he was the right person
  3481. # [22:13] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  3482. # [22:14] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  3483. # [22:14] <gkw> bkerensa: not sure if piling up multiple needinfos on a single person is the right call
  3484. # [22:14] * bc|bbiab is now known as bc
  3485. # [22:14] * Quits: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net) (Client exited)
  3486. # [22:15] * Joins: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net)
  3487. # [22:15] * Joins: marco (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3488. # [22:16] * philor|away is now known as philor
  3489. # [22:16] * Quits: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net) (Ping timeout)
  3490. # [22:17] * Quits: alexbardas (alexbardas@moz-62518563.mtv2.mozilla.com) (Input/output error)
  3491. # [22:17] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  3492. # [22:17] * Joins: bmoss (bmoss@moz-62518563.mtv2.mozilla.com)
  3493. # [22:17] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Quit: Reconnecting…)
  3494. # [22:17] * erahm wonders why -Werror is on for linux but not mac
  3495. # [22:17] * Joins: gokce_ (gokce@BB085765.12D04122.4DE73C5E.IP)
  3496. # [22:18] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3497. # [22:18] * geekboy|afk is now known as geekboy
  3498. # [22:18] * Quits: gokce (gokce@BB085765.12D04122.4DE73C5E.IP) (Ping timeout)
  3499. # [22:18] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  3500. # [22:18] * ChanServ sets mode: +o smaug
  3501. # [22:19] * Quits: Sushant94 (Sushant@BF413162.7039D15E.D30E9BEF.IP) (Ping timeout)
  3502. # [22:19] * Joins: Mano (mano@moz-9B336106.red.bezeqint.net)
  3503. # [22:19] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  3504. # [22:20] * Joins: Sushant94 (Sushant@BF413162.7039D15E.D30E9BEF.IP)
  3505. # [22:21] * Quits: ggp (ggp@moz-1A759BD2.wifi.ic.unicamp.br) (Ping timeout)
  3506. # [22:22] <@ehsan> erahm: it's not?!
  3507. # [22:22] <erahm> ehsan: at least not for my local builds
  3508. # [22:22] * Quits: Mano (mano@moz-9B336106.red.bezeqint.net) (Client exited)
  3509. # [22:22] <@ehsan> erahm: do you have --enable-warnings-as-errors?
  3510. # [22:23] * Joins: ggp (ggp@818805FB.22010BA7.1B617ECD.IP)
  3511. # [22:23] <erahm> ehsan: wait I have to set a flag for that, even when tbpl is using it?
  3512. # [22:23] <@ehsan> erahm: yes
  3513. # [22:23] <erahm> ehsan: that's ridiculous
  3514. # [22:23] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  3515. # [22:24] <@ehsan> erahm: well, the theory is that doing this by default may break people's builds if they have different toolchain versions etc. but I agree with you :)
  3516. # [22:24] * Joins: jdover (jdover@moz-387A4E5F.mycingular.net)
  3517. # [22:24] * Quits: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com) (Input/output error)
  3518. # [22:24] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  3519. # [22:24] * dholbert|lunch is now known as dholbert
  3520. # [22:24] <erahm> ehsan: That argument is semi-valid, but really it should be —disable-warnings-as-errors for people who have sketchy toolchains
  3521. # [22:25] <jld> Can we depend on the <fstream> extension of passing a fd/Handle instead of a file path?
  3522. # [22:25] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  3523. # [22:25] <@ehsan> erahm: I agree!
  3524. # [22:25] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  3525. # [22:25] * Quits: kip (kip@9D222422.D1155E2C.CFC2A289.IP) (Client exited)
  3526. # [22:25] <froydnj> argh, closed
  3527. # [22:25] <erahm> ehsan: Is there a bug? Or has this been shot down before...
  3528. # [22:26] <RyanVM|sheriffduty> froydnj: what's it worth to ya?
  3529. # [22:26] <@ehsan> jld: is it supported by strlport?
  3530. # [22:26] <jld> ehsan: It does appear to be in stlport.
  3531. # [22:26] * froydnj knew he should have committed his patches before he spent all day hacking
  3532. # [22:26] <@ehsan> erahm: I think it was shot down on dev-platform a whole ago. don't remember...
  3533. # [22:26] <@ehsan> jld: then probably yes
  3534. # [22:27] <jld> ...assuming that <std/_fstream.h> is the right header there.
  3535. # [22:27] <froydnj> RyanVM|sheriffduty: one cold frothy beverage
  3536. # [22:27] <@ehsan> jld: that's what fstream includes
  3537. # [22:27] <jld> ehsan: Good. Now I don't have to go through tools/profiler/JSStreamWriter.* and replace everything with stdio.
  3538. # [22:28] <@ehsan> jld: (please test this theory on try though!)
  3539. # [22:28] * Joins: jet (jet@moz-62518563.mtv2.mozilla.com)
  3540. # [22:29] * Quits: ggp (ggp@818805FB.22010BA7.1B617ECD.IP) (Input/output error)
  3541. # [22:29] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  3542. # [22:29] * hwine-food is now known as hwine
  3543. # [22:29] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3544. # [22:30] * Quits: mukilan (mukilan@9964C1B8.4CC1D574.520CDC98.IP) (Connection reset by peer)
  3545. # [22:30] * Joins: Archaeopteryx (itsme@moz-E5C96939.cust.telecolumbus.net)
  3546. # [22:30] * Quits: jdover (jdover@moz-387A4E5F.mycingular.net) (Quit: Computer has gone to sleep.)
  3547. # [22:30] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3548. # [22:30] * Quits: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3549. # [22:31] * Joins: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3550. # [22:31] * jlund|lunch is now known as jlund
  3551. # [22:32] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3552. # [22:32] * Joins: jgilbert (jgilbert@moz-62518563.mtv2.mozilla.com)
  3553. # [22:33] * Joins: lpy_ (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3554. # [22:33] * Quits: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3555. # [22:34] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  3556. # [22:34] * Quits: janv (varga@moz-B791613F.dynamic.orange.sk) (Ping timeout)
  3557. # [22:34] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/d8ebbb47a75e - Brian Smith - Bug 1045739 - Stop checking revocation for expired certificates. r=dkeeler, a=sledru
  3558. # [22:34] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/9150826eaf1b - David Keeler - Bug 1045739 - Test that revocation checking doesn't occur for expired certificates. r=mmc, a=sledru
  3559. # [22:35] * Joins: janv (varga@moz-B791613F.dynamic.orange.sk)
  3560. # [22:35] * Quits: lpy_ (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3561. # [22:36] * Quits: glosoli (glosoli@20F8CB66.F521A5D7.434E912D.IP) (Quit: Textual IRC Client: www.textualapp.com)
  3562. # [22:37] * Quits: luke (luke@moz-6C4B3E7.dhcp.ftwo.tx.charter.com) (Connection reset by peer)
  3563. # [22:37] * Joins: luke (luke@moz-6C4B3E7.dhcp.ftwo.tx.charter.com)
  3564. # [22:37] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  3565. # [22:39] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  3566. # [22:40] * jmaher is now known as jmaher|afk
  3567. # [22:40] * Joins: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP)
  3568. # [22:40] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  3569. # [22:41] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  3570. # [22:41] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  3571. # [22:42] * Joins: jdover (jdover@moz-387A4E5F.mycingular.net)
  3572. # [22:42] * nthomas is now known as nthomas|away
  3573. # [22:43] * philor is now known as philor|away
  3574. # [22:43] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3575. # [22:43] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  3576. # [22:44] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  3577. # [22:44] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  3578. # [22:44] * Joins: handyman (handyman@moz-B454F4E9.hsd1.ca.comcast.net)
  3579. # [22:45] * Quits: jdover (jdover@moz-387A4E5F.mycingular.net) (Quit: Computer has gone to sleep.)
  3580. # [22:45] * Quits: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP) (Input/output error)
  3581. # [22:45] * Joins: kip (kip@9D222422.D1155E2C.CFC2A289.IP)
  3582. # [22:45] * Joins: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP)
  3583. # [22:45] * Quits: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3584. # [22:49] * Joins: tedders1 (tedders1@moz-656B7AA.cpe.net.cable.rogers.com)
  3585. # [22:50] * Quits: janv (varga@moz-B791613F.dynamic.orange.sk) (Quit: This computer has gone to sleep)
  3586. # [22:50] <jimm> RyanVM|sheriffduty: can we open up inbound?
  3587. # [22:50] <RyanVM|sheriffduty> jimm: we're burning jobs pretty regularly right now thanks to infra issues
  3588. # [22:50] <RyanVM|sheriffduty> that I have no current status/ETA on :\
  3589. # [22:50] <jimm> oh ok
  3590. # [22:50] <RyanVM|sheriffduty> and over 7000 pending
  3591. # [22:51] <RyanVM|sheriffduty> whee
  3592. # [22:51] <jimm> yeah best let that catch up I guess
  3593. # [22:51] * RyanVM|sheriffduty should close Try
  3594. # [22:52] * Quits: mitch0 (mitch@moz-CFD378DC.catv.pool.telekom.hu) (Client exited)
  3595. # [22:52] <erahm> dholbert: FWIW it would appear my bustage is the result of a 12 year old bug
  3596. # [22:52] <dholbert> erahm, haa
  3597. # [22:52] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  3598. # [22:52] <erahm> FML
  3599. # [22:53] * Joins: alexbardas (alexbardas@moz-62518563.mtv2.mozilla.com)
  3600. # [22:53] * Joins: kgrandon (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3601. # [22:54] * Joins: stefanh|away (stefanh@moz-3EED0162.customers.ownit.se)
  3602. # [22:54] * stefanh|away is now known as stefanh
  3603. # [22:54] <jwatt> RyanVM|sheriffduty: 7000?
  3604. # [22:54] * Quits: alexbardas (alexbardas@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  3605. # [22:55] <jwatt> how many do we clear in an hour?
  3606. # [22:55] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  3607. # [22:55] * Joins: bgrins (bgrins@7E8AA8DE.F0598F12.7E5C23C9.IP)
  3608. # [22:56] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  3609. # [22:56] <dholbert> RyanVM|sheriffduty, come on, we're so close to "over 9000"!
  3610. # [22:57] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  3611. # [22:57] * Quits: bgrins (bgrins@7E8AA8DE.F0598F12.7E5C23C9.IP) (Quit: Leaving.)
  3612. # [22:57] * Quits: jlund (sid36036@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3613. # [22:57] * Quits: ggherdov_ (sid11402@moz-E77DEB21.irccloud.com) (Ping timeout)
  3614. # [22:57] * Quits: sid0 (sid2934@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3615. # [22:57] * Quits: pdr (sid7901@moz-E77DEB21.irccloud.com) (Ping timeout)
  3616. # [22:57] * Quits: dmarcos (sid15240@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3617. # [22:57] * Quits: janx (sid16602@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3618. # [22:57] * Quits: cdiehl (sid19351@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3619. # [22:57] * Quits: lsblakk (sid23867@moz-E77DEB21.irccloud.com) (Ping timeout)
  3620. # [22:57] * Joins: bgrins (bgrins@7E8AA8DE.F0598F12.7E5C23C9.IP)
  3621. # [22:57] * Quits: wycats (sid79@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3622. # [22:57] * Quits: ttaubert (sid2620@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3623. # [22:57] * Quits: mvujovic (sid13458@moz-E77DEB21.irccloud.com) (Ping timeout)
  3624. # [22:57] * Quits: endee (sid15467@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3625. # [22:58] * Quits: jorendorff (sid28423@moz-E77DEB21.irccloud.com) (Ping timeout)
  3626. # [22:58] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  3627. # [22:58] * Quits: felipe (sid2734@moz-E77DEB21.irccloud.com) (Ping timeout)
  3628. # [22:58] * Quits: camd (sid24185@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3629. # [22:58] * Quits: jryans (sid12941@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3630. # [22:58] * Quits: jaws (uid2871@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3631. # [22:58] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  3632. # [22:58] * Quits: flod|away (sid43236@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3633. # [22:58] * Quits: jhford (sid15926@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3634. # [22:58] * Quits: mhenretty (sid11899@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3635. # [22:58] * Quits: rforbes (sid38685@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3636. # [22:58] * Quits: jscott (sid23814@moz-E77DEB21.irccloud.com) (Ping timeout)
  3637. # [22:58] * Quits: biesi_ (sid8099@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3638. # [22:58] * Quits: markh (sid24855@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3639. # [22:58] * Quits: daleharvey (sid513@moz-E77DEB21.irccloud.com) (Ping timeout)
  3640. # [22:58] * Quits: bkelly_pto (sid22777@moz-E77DEB21.irccloud.com) (Ping timeout)
  3641. # [22:58] * Quits: alex_tz (uid46009@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3642. # [22:58] * Quits: jocelyn (uid26949@moz-E77DEB21.irccloud.com) (Ping timeout)
  3643. # [22:58] * Quits: Unfocused (sid2622@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3644. # [22:58] * Quits: past (sid15657@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3645. # [22:58] * Quits: shawnjohnjr (sid15523@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3646. # [22:58] * Quits: jamesr (sid10481@moz-E77DEB21.irccloud.com) (Ping timeout)
  3647. # [22:58] * Quits: sebasmagri (sid20695@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3648. # [22:58] * Quits: system64 (uid17738@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3649. # [22:58] * Quits: gwagner (sid25406@moz-E77DEB21.irccloud.com) (Ping timeout)
  3650. # [22:58] * Quits: birtles (sid16523@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3651. # [22:58] * Quits: evilpie (sid7877@moz-E77DEB21.irccloud.com) (Ping timeout)
  3652. # [22:58] * Quits: dvander (sid13049@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3653. # [22:58] * Quits: krit (sid15081@moz-E77DEB21.irccloud.com) (Ping timeout)
  3654. # [22:58] * Quits: erikvold (sid18003@moz-E77DEB21.irccloud.com) (Ping timeout)
  3655. # [22:58] * Quits: pmaddi (sid32616@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3656. # [22:58] * Joins: mikeratcliffe (Adium@7E8AA8DE.F0598F12.7E5C23C9.IP)
  3657. # [22:58] * Quits: bemjb_ (sid10033@moz-E77DEB21.irccloud.com) (Ping timeout)
  3658. # [22:58] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  3659. # [22:58] * Quits: goutamnair (uid25773@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3660. # [22:58] * Quits: mstange (uid15727@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3661. # [22:58] * Quits: ericchou (uid13391@moz-E77DEB21.irccloud.com) (Ping timeout)
  3662. # [22:58] * Quits: mdoglio|afk (sid15662@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3663. # [22:58] * Quits: mattur (sid16049@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3664. # [22:58] * Quits: eseidel (sid5595@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3665. # [22:58] * Quits: josh (sid38674@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3666. # [22:58] * Quits: sheppy (sid12424@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3667. # [22:58] * Quits: gfritzsche (sid7586@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3668. # [22:58] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc])
  3669. # [22:59] * Quits: kaustavdm (sid38152@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3670. # [22:59] * Quits: fhd (sid2508@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3671. # [22:59] * Parts: sovemp (shaycraft@37579293.AD310888.4B8DD6BE.IP)
  3672. # [22:59] * Quits: mfinkle (sid7114@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3673. # [22:59] * Quits: mmc (uid16596@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3674. # [22:59] * Quits: RodrigoWaters_ (uid30345@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3675. # [22:59] * Quits: athena (sid21127@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3676. # [22:59] * Quits: cabanier (sid15093@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3677. # [22:59] * Quits: dhylands (sid15724@moz-E77DEB21.irccloud.com) (Ping timeout)
  3678. # [22:59] * Quits: mkohler|afk (sid44642@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3679. # [22:59] * Quits: ashughes (uid34327@moz-E77DEB21.irccloud.com) (Ping timeout)
  3680. # [22:59] * Quits: gaye (sid12943@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3681. # [22:59] * Quits: davida (sid14473@moz-E77DEB21.irccloud.com) (Ping timeout)
  3682. # [22:59] * Quits: bgrins (bgrins@7E8AA8DE.F0598F12.7E5C23C9.IP) (Ping timeout)
  3683. # [22:59] * Quits: horiaolaru (sid15701@moz-31ABA2C0.irccloud.com) (Ping timeout)
  3684. # [22:59] * Quits: jandem-away (sid16255@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3685. # [22:59] * Quits: ferjm_away (sid16658@moz-A42E5B7B.irccloud.com) (Ping timeout)
  3686. # [22:59] * Joins: dmarcos (sid15240@moz-31ABA2C0.irccloud.com)
  3687. # [22:59] * Joins: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP)
  3688. # [22:59] * Joins: sid0 (sid2934@moz-5F4AA75A.irccloud.com)
  3689. # [22:59] * Joins: Unfocused (sid2622@moz-5F4AA75A.irccloud.com)
  3690. # [22:59] * Joins: kaustavdm (sid38152@moz-5F4AA75A.irccloud.com)
  3691. # [22:59] * Joins: josh (sid38674@moz-5F4AA75A.irccloud.com)
  3692. # [22:59] * Joins: rforbes (sid38685@moz-5F4AA75A.irccloud.com)
  3693. # [23:00] * Joins: flod|afk (sid43236@moz-A42E5B7B.irccloud.com)
  3694. # [23:00] * Quits: sawrubh (sid6719@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3695. # [23:00] * Joins: mfinkle (sid7114@moz-5F4AA75A.irccloud.com)
  3696. # [23:00] * Joins: jryans (sid12941@moz-5F4AA75A.irccloud.com)
  3697. # [23:00] * Joins: wycats (sid79@moz-5F4AA75A.irccloud.com)
  3698. # [23:00] * Joins: pdr (sid7901@moz-E77DEB21.irccloud.com)
  3699. # [23:00] * Joins: alex_tz (uid46009@moz-5F4AA75A.irccloud.com)
  3700. # [23:00] * Joins: shawnjohnjr (sid15523@moz-5F4AA75A.irccloud.com)
  3701. # [23:00] * Joins: jlund|lunch (sid36036@moz-A42E5B7B.irccloud.com)
  3702. # [23:00] * Joins: daleharvey (sid513@moz-E77DEB21.irccloud.com)
  3703. # [23:00] * Joins: jaws (uid2871@moz-5F4AA75A.irccloud.com)
  3704. # [23:00] * Joins: biesi_ (sid8099@moz-5F4AA75A.irccloud.com)
  3705. # [23:00] * Quits: lightsofapollo (sid11987@moz-5F4AA75A.irccloud.com) (Ping timeout)
  3706. # [23:00] * Joins: sheppy-lunch (sid12424@moz-5F4AA75A.irccloud.com)
  3707. # [23:00] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  3708. # [23:00] * Joins: mkohler (sid44642@moz-5F4AA75A.irccloud.com)
  3709. # [23:00] * Joins: eseidel (sid5595@moz-5F4AA75A.irccloud.com)
  3710. # [23:00] * Joins: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3711. # [23:00] * Joins: janx (sid16602@moz-A42E5B7B.irccloud.com)
  3712. # [23:00] * Joins: athena (sid21127@moz-31ABA2C0.irccloud.com)
  3713. # [23:00] * Joins: jhford (sid15926@moz-A42E5B7B.irccloud.com)
  3714. # [23:00] * Joins: markh (sid24855@moz-5F4AA75A.irccloud.com)
  3715. # [23:00] * sheppy-lunch is now known as sheppy
  3716. # [23:00] * Joins: dvander (sid13049@moz-5F4AA75A.irccloud.com)
  3717. # [23:00] * Joins: mhenretty (sid11899@moz-5F4AA75A.irccloud.com)
  3718. # [23:01] * armenzg is now known as armenzg_brb
  3719. # [23:01] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  3720. # [23:01] * Joins: gfritzsche (sid7586@moz-5F4AA75A.irccloud.com)
  3721. # [23:01] * Joins: RodrigoWaters_ (uid30345@moz-5F4AA75A.irccloud.com)
  3722. # [23:01] * Joins: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP)
  3723. # [23:02] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  3724. # [23:02] * Joins: pmaddi (sid32616@moz-31ABA2C0.irccloud.com)
  3725. # [23:02] * Joins: erikvold (sid18003@moz-E77DEB21.irccloud.com)
  3726. # [23:02] * Joins: sawrubh (sid6719@moz-5F4AA75A.irccloud.com)
  3727. # [23:02] * Quits: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP) (Quit: Leaving.)
  3728. # [23:02] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  3729. # [23:02] * juanb|lunch is now known as juanb
  3730. # [23:02] <mrbkap> Is try closed right now?
  3731. # [23:02] * Joins: yeukhon (yeukhon@3FAEAB52.3CEFD6CE.782E401B.IP)
  3732. # [23:03] * Joins: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net)
  3733. # [23:03] * Joins: lightsofapollo (sid11987@moz-5F4AA75A.irccloud.com)
  3734. # [23:03] <KWierso> mrbkap: everything's closed
  3735. # [23:03] * Joins: gwagner_ (sid25406@moz-E77DEB21.irccloud.com)
  3736. # [23:03] * Joins: Florent (Thunderbir@C6EE648A.F0598F12.7E5C23C9.IP)
  3737. # [23:04] * Joins: ttaubert (sid2620@moz-A42E5B7B.irccloud.com)
  3738. # [23:04] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  3739. # [23:04] * armenzg_brb is now known as armenzg
  3740. # [23:04] * gwagner_ is now known as gwagner
  3741. # [23:04] * Quits: gwagner (sid25406@moz-E77DEB21.irccloud.com) (Quit: )
  3742. # [23:04] * Joins: cpeterson (cpeterson@C2D407F1.48079CAC.42BCAFEB.IP)
  3743. # [23:04] * Joins: davida (sid14473@moz-E77DEB21.irccloud.com)
  3744. # [23:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/969036b9f2cd - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3745. # [23:04] * Joins: gwagner (sid25406@moz-E77DEB21.irccloud.com)
  3746. # [23:04] * Joins: dhylands (sid15724@moz-E77DEB21.irccloud.com)
  3747. # [23:05] <mrbkap> KWierso: Huh, I must have just gotten in under the closure.
  3748. # [23:05] * Quits: tomatoeblue (textual@FCCEA34F.7672369.D8E68FF6.IP) (Quit: Computer has gone to sleep.)
  3749. # [23:05] * RyanVM|sheriffduty is now known as RyanVM
  3750. # [23:05] * Joins: alexbardas (alexbardas@moz-62518563.mtv2.mozilla.com)
  3751. # [23:05] * Quits: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  3752. # [23:06] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3753. # [23:06] * Joins: nathanr (nathanr@497655C9.9B4FE5E6.8FF04A21.IP)
  3754. # [23:07] * Quits: drosdeck (usuario@4A1C46DA.76504782.4513742A.IP) (Quit: Konversation terminated!)
  3755. # [23:07] * RyanVM is now known as RyanVM|afk
  3756. # [23:07] * Quits: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3757. # [23:07] * KWierso is now known as KWierso|sheriffduty
  3758. # [23:08] * Joins: jorendorff (sid28423@moz-E77DEB21.irccloud.com)
  3759. # [23:08] * Joins: cdiehl (sid19351@moz-A42E5B7B.irccloud.com)
  3760. # [23:08] * Joins: mvujovic (sid13458@moz-E77DEB21.irccloud.com)
  3761. # [23:09] * Joins: bdahl (bdahl@moz-62518563.mtv2.mozilla.com)
  3762. # [23:09] * Joins: jandem (sid16255@moz-A42E5B7B.irccloud.com)
  3763. # [23:09] * Joins: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP)
  3764. # [23:09] * jlund|lunch is now known as jlund
  3765. # [23:10] * Joins: evilpie (sid7877@moz-E77DEB21.irccloud.com)
  3766. # [23:10] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Quit: leaving... bye!)
  3767. # [23:12] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  3768. # [23:13] * Joins: bemjb_ (sid10033@moz-E77DEB21.irccloud.com)
  3769. # [23:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a02c2ad1fb88 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  3770. # [23:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/9ab25ac5e819 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  3771. # [23:13] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  3772. # [23:14] * Quits: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3773. # [23:14] * Quits: nacerix (Instantbir@32FFF58C.D8EFF2FE.4A192F9A.IP) (Ping timeout)
  3774. # [23:14] * Joins: felipe (sid2734@moz-E77DEB21.irccloud.com)
  3775. # [23:14] * Joins: ashughes (uid34327@moz-E77DEB21.irccloud.com)
  3776. # [23:15] * Joins: njn (chatzilla@moz-BE91A9CC.dyn.iinet.net.au)
  3777. # [23:15] * spohl is now known as spohl|afk
  3778. # [23:15] * Joins: tomatoeblue (textual@FCCEA34F.7672369.D8E68FF6.IP)
  3779. # [23:15] * jcranmer is now known as jcranmer|away
  3780. # [23:16] * Fallen|away is now known as Fallen
  3781. # [23:17] * Joins: mt_ (mt@moz-62518563.mtv2.mozilla.com)
  3782. # [23:17] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3783. # [23:18] * Joins: endee (sid15467@moz-31ABA2C0.irccloud.com)
  3784. # [23:18] * Quits: gokce_ (gokce@BB085765.12D04122.4DE73C5E.IP) (Quit: Konversation terminated!)
  3785. # [23:18] * Joins: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net)
  3786. # [23:18] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  3787. # [23:18] * Joins: ggherdov_ (sid11402@moz-E77DEB21.irccloud.com)
  3788. # [23:19] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  3789. # [23:19] * Joins: horiaolaru (sid15701@moz-31ABA2C0.irccloud.com)
  3790. # [23:20] <jesup> erahm: you can do better, there are plenty of 14-year-old bugs to choose from!
  3791. # [23:20] * Joins: lsblakk (sid23867@moz-E77DEB21.irccloud.com)
  3792. # [23:21] <erahm> jesup: Well it's a bug in the something was broken sense, not the filed in bugzilla sense :)
  3793. # [23:21] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  3794. # [23:22] * Joins: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP)
  3795. # [23:23] * Joins: krit (sid15081@moz-E77DEB21.irccloud.com)
  3796. # [23:23] * Joins: system64 (uid17738@moz-A42E5B7B.irccloud.com)
  3797. # [23:23] * Quits: espadrine (espadrine@moz-60DCA723.w92-128.abo.wanadoo.fr) (Quit: espadrine)
  3798. # [23:24] * Quits: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3799. # [23:25] * Quits: sir_none (Thunderbir@moz-91309803.goll.stat.salzburg-online.at) (Quit: sir_none)
  3800. # [23:25] * Quits: davidb (davidb@3379008A.E34415CA.B26385CC.IP) (Quit: Blah blah blah)
  3801. # [23:25] * Joins: kentuckyfriedtakahe (ajones@moz-62518563.mtv2.mozilla.com)
  3802. # [23:27] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  3803. # [23:27] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  3804. # [23:28] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  3805. # [23:28] * Joins: ferjm_away (sid16658@moz-A42E5B7B.irccloud.com)
  3806. # [23:28] * Joins: bkelly_pto (sid22777@moz-E77DEB21.irccloud.com)
  3807. # [23:29] * Joins: mmc (uid16596@moz-A42E5B7B.irccloud.com)
  3808. # [23:30] * Quits: mahdi (mahdi@B9363807.1E423FAF.195261CE.IP) (Connection reset by peer)
  3809. # [23:31] * Quits: ehugg (ehugg@moz-BEEECCC0.mycingular.net) (Quit: ehugg)
  3810. # [23:31] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  3811. # [23:32] * Joins: espadrine (espadrine@moz-60DCA723.w92-128.abo.wanadoo.fr)
  3812. # [23:32] * Quits: bjacob (bjacob@moz-CC07A754.cable.teksavvy.com) (Ping timeout)
  3813. # [23:33] * Quits: njn (chatzilla@moz-BE91A9CC.dyn.iinet.net.au) (Ping timeout)
  3814. # [23:33] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  3815. # [23:33] * Joins: jocelyn (uid26949@moz-E77DEB21.irccloud.com)
  3816. # [23:33] * Joins: jscott (sid23814@moz-E77DEB21.irccloud.com)
  3817. # [23:33] * Joins: cabanier (sid15093@moz-31ABA2C0.irccloud.com)
  3818. # [23:33] * Joins: past (sid15657@moz-31ABA2C0.irccloud.com)
  3819. # [23:33] * Joins: goutamnair (uid25773@moz-A42E5B7B.irccloud.com)
  3820. # [23:34] * Joins: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP)
  3821. # [23:34] * nthomas|away is now known as nthomas
  3822. # [23:36] * Quits: lpy (lpy@1B272E3A.9ABFF1A6.65042015.IP) (Ping timeout)
  3823. # [23:37] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  3824. # [23:38] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  3825. # [23:39] * chmanchester is now known as chmanchester|afk
  3826. # [23:40] <ack> KWierso|sheriffduty: heya, could you look at https://bugzilla.mozilla.org/show_bug.cgi?id=993584 for me?
  3827. # [23:41] <ack> KWierso|sheriffduty: it's blocking an aurora uplift
  3828. # [23:41] <KWierso|sheriffduty> ack: looking
  3829. # [23:41] <KWierso|sheriffduty> ack: what specifically needs doing?
  3830. # [23:42] <ack> KWierso|sheriffduty: needs to be landed
  3831. # [23:42] * stefanh is now known as stefanh|away
  3832. # [23:42] <KWierso|sheriffduty> trees are all closed for infra issues, so nothing's going to land for a while
  3833. # [23:42] * gregglind is now known as gregglind_away
  3834. # [23:42] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  3835. # [23:42] <ack> KWierso|sheriffduty: ah, ok. that's probably why it didn't land overnight?
  3836. # [23:44] * Joins: birtles (sid16523@moz-A42E5B7B.irccloud.com)
  3837. # [23:44] * Joins: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP)
  3838. # [23:44] * armenzg is now known as armenzg_afk
  3839. # [23:45] <KWierso|sheriffduty> ack: I'm planning on doing a round of checkins later today, assuming the infra stuff gets fixed
  3840. # [23:46] <sicking> nsm: where do we file bugs against fetch()
  3841. # [23:46] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  3842. # [23:46] * Quits: armenzg_afk (armenzg@9CDB38D4.5F2BAC97.9BD5FA69.IP) (Quit: Leaving)
  3843. # [23:48] * Quits: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.91.1)
  3844. # [23:49] * Joins: ericchou (uid13391@moz-E77DEB21.irccloud.com)
  3845. # [23:50] * Quits: Florent (Thunderbir@C6EE648A.F0598F12.7E5C23C9.IP) (Quit: Florent)
  3846. # [23:51] * Quits: tonymec_KDE (tonymec@6E559081.2D594C1D.277517C1.IP) (Ping timeout)
  3847. # [23:52] * terrence is now known as terrence-bbiab
  3848. # [23:53] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  3849. # [23:55] * Joins: brendan (brendaneic@6A24F57D.51C7F032.FA49AE52.IP)
  3850. # [23:56] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  3851. # [23:56] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  3852. # [23:56] * geekboy is now known as geekboy|afk
  3853. # [23:57] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  3854. # [23:58] * Quits: AaronMT (AaronMT@moz-53D1D1F.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  3855. # [23:59] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3856. # Session Close: Fri Oct 03 00:00:00 2014

The end :)