Re: [webkit-dev] Making more use of ScriptWrappable

2012-11-02 Thread Maciej Stachowiak
On Nov 2, 2012, at 12:45 AM, Adam Barth aba...@webkit.org wrote: On Thu, Nov 1, 2012 at 4:10 PM, Maciej Stachowiak m...@apple.com wrote: (3) I suspect that we can handle this without adding an IDL attribute at all. C++ overloaded functions could let the bindings do something different

Re: [webkit-dev] Slide deck: How WebKit Works

2012-11-02 Thread Maciej Stachowiak
These slides present the information really well. Thanks for sharing them. Cheers, Maciej On Oct 31, 2012, at 7:30 PM, Adam Barth aba...@webkit.org wrote: Below are some slides I presented yesterday that give a high-level overview of how WebKit works:

Re: [webkit-dev] DRT/WTR should clear the cache at the beginning of each test?

2012-11-02 Thread Antti Koivisto
On Wed, Oct 31, 2012 at 12:05 AM, Alexey Proskuryakov a...@apple.com wrote: This will mean that cache is always almost empty, and all resources in it are extremely fresh. I don't know if this would provide substantial additional test coverage over cleaning the cache all the time, or just

Re: [webkit-dev] DRT/WTR should clear the cache at the beginning of each test?

2012-11-02 Thread Vyacheslav Ostapenko
On Fri, Nov 2, 2012 at 12:33 PM, Antti Koivisto koivi...@iki.fi wrote: On Wed, Oct 31, 2012 at 12:05 AM, Alexey Proskuryakov a...@apple.comwrote: This will mean that cache is always almost empty, and all resources in it are extremely fresh. I don't know if this would provide substantial

[webkit-dev] …Inlines.h vs …InlineMethods.h

2012-11-02 Thread Mark Lam
FYI, some time in the near future (maybe this weekend), I plan to do some work to break inline methods in JavaScriptCore out of header files into their own inline header files. Naming-wise, the existing JSC code has a few inline headers named …Inlines.h and more named …InlinedMethods.h. On

Re: [webkit-dev] …Inlines.h vs …InlineMethods.h

2012-11-02 Thread Eric Seidel
My understanding was that *Inlines/*InlineMethods were more about limiting includes in the main header. Maybe that's just a happy side effect. :) I also prefer the *Inlines naming. :) On Fri, Nov 2, 2012 at 5:48 PM, Mark Lam mark@apple.com wrote: FYI, some time in the near future (maybe

Re: [webkit-dev] …Inlines.h vs …InlineMethods.h

2012-11-02 Thread Ryosuke Niwa
On Fri, Nov 2, 2012 at 5:48 PM, Mark Lam mark@apple.com wrote: FYI, some time in the near future (maybe this weekend), I plan to do some work to break inline methods in JavaScriptCore out of header files into their own inline header files. Naming-wise, the existing JSC code has a few