Re: [webkit-dev] New feature announcement – Video conferencing and peer-to-peer communication

2011-05-17 Thread Leandro Graciá Gil
About the modularity proposal, I have no problem creating a new separate folder in WebCore for this feature. An example of its structure could be the following. In WebCore/mediastream: - GeneratedStream.h/cpp/idl - Stream.h/cpp/idl - StreamRecorder.h/cpp/idl - CallbackTask.h -

Re: [webkit-dev] Implementing the device element

2011-02-28 Thread Leandro Graciá Gil
Hi, El 22 de febrero de 2011 12:20, Adam Bergkvist adam.bergkv...@ericsson.comescribió: Hi, On 2011-02-15 17:50, Leandro Graciá Gil wrote: Yes, the platform independent code in the device element will determine if a selection has been made, or altered, in the list of available

Re: [webkit-dev] Implementing the device element

2011-02-15 Thread Leandro Graciá Gil
Hi, El 10 de febrero de 2011 15:15, Adam Bergkvist adam.bergkv...@ericsson.comescribió: Hi, On 2011-02-09 22:10, Leandro Graciá Gil wrote: So, does that mean that a WebCore platform-independent code is going to determine if a new device handler should be created? I think that some UAs

Re: [webkit-dev] Implementing the device element

2011-02-09 Thread Leandro Graciá Gil
Hi, El 7 de febrero de 2011 18:56, Adam Bergkvist adam.bergkv...@ericsson.com escribió: Hi, On 2011-02-04 19:21, Leandro Graciá Gil wrote: This is good news! Especially for the situations where WebCore can't directly access the hardware. One existing case of this we should keep in mind

Re: [webkit-dev] Implementing the device element

2011-02-04 Thread Leandro Graciá Gil
El 3 de febrero de 2011 18:59, Adam Bergkvist adam.bergkv...@ericsson.com escribió: Hi, Leandro Graciá Gil wrote: The approach proposed in https://bugs.webkit.org/show_bug.cgi?id=47264 brings the device probing and selection to the WebCore level. It does so by first creating a list

Re: [webkit-dev] Implementing the device element

2011-02-04 Thread Leandro Graciá Gil
El 4 de febrero de 2011 18:21, Leandro Graciá Gil leandrogra...@chromium.org escribió: I have also created a small diagram to explain how our implementation works: https://docs.google.com/a/google.com/drawings/edit?id=1jSW-6MJd8mp2qPvwnvZnBVzll6UtBz3r1viZgTE4XVAhl=enauthkey=CPLpy5oJ

Re: [webkit-dev] device element

2011-02-02 Thread Leandro Graciá Gil
Hi René, There's already people working on this in WebKit. I can't speak about Safari but we're actually discussing different approaches to its implementation. Please take a look at this thread and feel free to contribute: https://lists.webkit.org/pipermail/webkit-dev/2011-January/015822.html

Re: [webkit-dev] Implementing the device element

2011-02-02 Thread Leandro Graciá Gil
Thanks, Leandro El 1 de febrero de 2011 01:43, Leandro Graciá Gil leandrogra...@chromium.org escribió: Hi, We have recently noticed a patch to implement the device element in WebKit. Since this is an important new feature, I thought we should have a discussion about the best way to implement

Re: [webkit-dev] Implementing the device element

2011-02-02 Thread Leandro Graciá Gil
Thanks, Leandro PS: sorry if you received this twice. I used the wrong account before and it seems that it wasn't properly reported as a thread reply in the list archive. El 1 de febrero de 2011 01:43, Leandro Graciá Gil leandrogra...@chromium.org escribió: Hi, We have recently noticed a patch

[webkit-dev] Implementing the device element

2011-01-31 Thread Leandro Graciá Gil
Hi, We have recently noticed a patch to implement the device element in WebKit. Since this is an important new feature, I thought we should have a discussion about the best way to implement it. Here's the actual specification for it:

Re: [webkit-dev] PSA: Don't try to hold onto temporaries with references

2010-10-04 Thread Leandro Graciá Gil
In summary, looking at code like this B b = c-foo(); ... b.m(); If c-foo() returns a temporary (return B();), then it is safe. Maybe I'm wrong, but are you completely sure about this one? I would say that the temporary object created in return B() will cease to exist as soon as it