[webkit-dev] browser extensions

2009-04-15 Thread Patrick Mueller
Now that the Chrome folks have talked about extensions, I thought I'd ask what the story/plan is for WebKit. http://www.aaronboodman.com/2009/04/content-scripts-in-chromium.html So ... I guess the first question is, are extensions considered out-of-scope for WebKit? As in, more of a

Re: [webkit-dev] browser extensions

2009-04-15 Thread Aaron Boodman
Hey Patrick, Extensions logically fall outside the boundary of the rendering engine, and that is the way we've approached in Chromium, too. But since Chromium extensions are basically just web pages with a few extra APIs added, there is a relatively obvious path to compatibility and even sharing

Re: [webkit-dev] browser extensions

2009-04-15 Thread Patrick Mueller
Yup, it's easy to draw the line of what goes into WebKit for things like browser extensions. It does kind of raise the question whether there should be some other layer between (alongside?) WebKit and user agents, where things like extensions, debuggers, etc, might live. Aaron Boodman wrote:

Re: [webkit-dev] Is it OK to remove Frame::setIsDisconnected() and isDisconnected() ?

2009-04-15 Thread Adam Roben
On Apr 15, 2009, at 3:48 PM, Sverrir Á. Berg wrote: Working on a change in FrameTree and noticed that the checks in top() and parent() for 'checkForDisconnectedFrame' rely on a flag in Frame that as far as I can tell is never set. So my naive question is: Can I remove the corresponding code

Re: [webkit-dev] browser extensions

2009-04-15 Thread Maciej Stachowiak
On Apr 15, 2009, at 9:06 AM, Patrick Mueller wrote: Now that the Chrome folks have talked about extensions, I thought I'd ask what the story/plan is for WebKit. http://www.aaronboodman.com/2009/04/content-scripts-in-chromium.html So ... I guess the first question is, are extensions

Re: [webkit-dev] Is it OK to remove Frame::setIsDisconnected() and isDisconnected() ?

2009-04-15 Thread Sverrir Á . Berg
Hi Adam,Thanks for the links. These are simply exposing the functions as a formal a API's. I understand that you typically don't want to change externally exposed API's but these can easily be stubbed out (or removed). I should have pointed out in my original email that I have tried to remove

Re: [webkit-dev] Is it OK to remove Frame::setIsDisconnected() and isDisconnected() ?

2009-04-15 Thread Maciej Stachowiak
On Apr 15, 2009, at 1:29 PM, Sverrir Á. Berg wrote: Hi Adam, Thanks for the links. These are simply exposing the functions as a formal a API's. I understand that you typically don't want to change externally exposed API's but these can easily be stubbed out (or removed). I should have

[webkit-dev] Need help with content editable mode modification.

2009-04-15 Thread Raja Sekharan
Hi, I want to modify the behavior of webkit when it is in the content editable mode in Qt. I want to add methods to it that I can call from the Qt framework. I can't seem to find any documentation that is helping with this, Please tell me where should I start. There is little to no documentation