Re: [webkit-dev] WebKit modularization

2012-02-27 Thread Alexey Proskuryakov
24.02.2012, в 10:00, Adam Barth написал(а): I'm happy to re-check them for license errors. If you can send me a list of the license errors you've noticed, I'll make sure they get addressed. For the record, I sent comments via private e-mail, and Adam refused to follow up on this promise

Re: [webkit-dev] WebKit modularization

2012-02-27 Thread Adam Barth
2012/2/27 Adam Barth aba...@webkit.org: 2012/2/27 Alexey Proskuryakov a...@webkit.org: 24.02.2012, в 10:00, Adam Barth написал(а): I'm happy to re-check them for license errors.  If you can send me a list of the license errors you've noticed, I'll make sure they get addressed. For the

Re: [webkit-dev] WebKit modularization

2012-02-27 Thread Adam Barth
2012/2/27 Alexey Proskuryakov a...@webkit.org: 27.02.2012, в 11:54, Adam Barth написал(а): Huh?  I'm sorry, I thought I addressed all the issues you spotted. Are there more I missed?  I certainly don't have any wish (or motivation) to mess up the copyright blocks. Thank you! I made the

Re: [webkit-dev] WebKit modularization

2012-02-24 Thread Alexey Proskuryakov
22.02.2012, в 22:08, Kentaro Hara написал(а): TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio, WebSocket, IndexedDB, File APIs ...etc will be moved from WebCore/ to WebCore/Modules/. Looking at patches that are actually getting landed, they go far beyond

Re: [webkit-dev] WebKit modularization

2012-02-24 Thread Adam Barth
2012/2/24 Alexey Proskuryakov a...@webkit.org: 22.02.2012, в 22:08, Kentaro Hara написал(а): TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio, WebSocket, IndexedDB, File APIs ...etc will be moved from WebCore/ to WebCore/Modules/. Looking at patches that

Re: [webkit-dev] WebKit modularization

2012-02-24 Thread Maciej Stachowiak
On Feb 24, 2012, at 9:57 AM, Alexey Proskuryakov wrote: 22.02.2012, в 22:08, Kentaro Hara написал(а): TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio, WebSocket, IndexedDB, File APIs ...etc will be moved from WebCore/ to WebCore/Modules/. Looking at

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Ashod Nakashian
? -Ash From: Kentaro Hara hara...@chromium.org To: WebKit Development webkit-dev@lists.webkit.org Sent: Thursday, February 23, 2012 10:08 AM Subject: [webkit-dev] WebKit modularization TL;DR: We are starting WebKit modularization. Self-contained features like

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Adam Barth
(FILE_SYSTEM) code out of WorkerContext. That's lines 485-492 on the spreadsheet. Thanks! Adam From: Kentaro Hara hara...@chromium.org To: WebKit Development webkit-dev@lists.webkit.org Sent: Thursday, February 23, 2012 10:08 AM Subject: [webkit-dev] WebKit

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Ashod Nakashian
To: Ashod Nakashian ashodnakash...@yahoo.com Cc: Kentaro Hara hara...@chromium.org; WebKit Development webkit-dev@lists.webkit.org Sent: Thursday, February 23, 2012 12:29 PM Subject: Re: [webkit-dev] WebKit modularization On Thu, Feb 23, 2012 at 12:18 AM, Ashod Nakashian ashodnakash...@yahoo.com

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Adam Barth
On Thu, Feb 23, 2012 at 10:07 AM, Simon Fraser simon.fra...@apple.com wrote: On Feb 22, 2012, at 10:08 PM, Kentaro Hara wrote: TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio, WebSocket, IndexedDB, File APIs ...etc will be moved from WebCore/ to

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Simon Fraser
On Feb 23, 2012, at 10:24 AM, Adam Barth wrote: On Thu, Feb 23, 2012 at 10:07 AM, Simon Fraser simon.fra...@apple.com wrote: On Feb 22, 2012, at 10:08 PM, Kentaro Hara wrote: TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio, WebSocket, IndexedDB, File APIs

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Pavel Feldman
On Thu, Feb 23, 2012 at 10:24 PM, Adam Barth aba...@webkit.org wrote: On Thu, Feb 23, 2012 at 10:07 AM, Simon Fraser simon.fra...@apple.com wrote: On Feb 22, 2012, at 10:08 PM, Kentaro Hara wrote: TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio,

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Martin Robinson
On Thu, Feb 23, 2012 at 10:24 AM, Adam Barth aba...@webkit.org wrote: Currently, the plan is that there won't be any direct dependencies from WebCore into code in Modules, but code in Modules will be able to depend on anything in WebCore it likes.  We've added a couple abstract Observer

Re: [webkit-dev] WebKit modularization

2012-02-23 Thread Adam Barth
On Thu, Feb 23, 2012 at 10:36 AM, Simon Fraser simon.fra...@apple.com wrote: On Feb 23, 2012, at 10:24 AM, Adam Barth wrote: On Thu, Feb 23, 2012 at 10:07 AM, Simon Fraser simon.fra...@apple.com wrote: On Feb 22, 2012, at 10:08 PM, Kentaro Hara wrote: TL;DR: We are starting WebKit

[webkit-dev] WebKit modularization

2012-02-22 Thread Kentaro Hara
TL;DR: We are starting WebKit modularization. Self-contained features like WebAudio, WebSocket, IndexedDB, File APIs ...etc will be moved from WebCore/ to WebCore/Modules/. We are planning to modularize WebKit. We are planning to split self-contained features out of WebCore/ into

Re: [webkit-dev] WebKit modularization

2012-02-22 Thread Adam Barth
Here are a couple example of a patches that are part of this project: https://bugs.webkit.org/attachment.cgi?id=128395action=review https://bugs.webkit.org/attachment.cgi?id=128247action=review Notice that we've removed a bunch of feature-spec code from core classes like DOMWindow and Page. The