Re: [webkit-dev] How to get mimeType for decidePolicyForResponse ??

2011-05-24 Thread Aneesh Bhasin
Hi.. On Wed, May 25, 2011 at 9:03 AM, naren.me...@gmail.com wrote: Thanks for the response, Sam. On Tue, May 24, 2011 at 10:19 PM, Sam Weinig wei...@apple.com wrote: It depends what port you are using, I am using WebKit2-GTK port. Any idea, how it can be done in that ? -- Naren Adding

Re: [webkit-dev] Windowless X based plugin and its support in WebKit and WebKit2 (GTK+ port)

2011-05-09 Thread Aneesh Bhasin
Resending as I had mistakenly forgotten to send it to the mailing list Hi Carlos, On Fri, May 6, 2011 at 7:00 PM, Carlos Garcia Campos cgar...@igalia.com wrote: El Fri, 6 May 2011 17:13:17 +0530 Aneesh Bhasin contact.ane...@gmail.com escribió: Hi All, Hi, I have been trying to understand

[webkit-dev] Windowless X based plugin and its support in WebKit and WebKit2 (GTK+ port)

2011-05-06 Thread Aneesh Bhasin
tried looking at bugzilla but could not find any relevant bugs... Thanks in advance for any helpful suggestion and pointers.. regards, Aneesh Bhasin /* * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification

Re: [webkit-dev] Windowless X based plugin and its support in WebKit and WebKit2 (GTK+ port)

2011-05-06 Thread Aneesh Bhasin
Hi Carlos, On Fri, May 6, 2011 at 7:00 PM, Carlos Garcia Campos cgar...@igalia.com wrote: El Fri, 6 May 2011 17:13:17 +0530 Aneesh Bhasin contact.ane...@gmail.com escribió: Hi All, Hi, I have been trying to understand the WebKit2 source and hopefully start contributing small missing

Re: [webkit-dev] Windowless X based plugin and its support in WebKit and WebKit2 (GTK+ port)

2011-05-06 Thread Aneesh Bhasin
Hi Martin, On Fri, May 6, 2011 at 9:15 PM, Martin Robinson mrobin...@webkit.org wrote: On Fri, May 6, 2011 at 4:43 AM, Aneesh Bhasin contact.ane...@gmail.com wrote: Could someone please have a look and let me know if there is something in the plugin that is wrong, or is there an issue

[webkit-dev] Resource Cache in WebKit2

2011-04-06 Thread Aneesh Bhasin
Hi All, I have been looking at the WebKit2 code in the latest git version to get more understanding about it. As fas as I could understand, the Resource Cache is still managed by each WebProcess individually (and the sample application is using the DOCUMENT_VIEWER cache model for now) and there

Re: [webkit-dev] Resource Cache in WebKit2

2011-04-06 Thread Aneesh Bhasin
---Resending : Had accidentally replied only to Darin - adding the list too in CC now.. my apologies ! --- Hi Darin, On Wed, Apr 6, 2011 at 7:26 PM, Darin Adler da...@apple.com wrote: WebKit2 has only one web process at this time. Yes, I saw that when I was going through the code. But it is

Re: [webkit-dev] what's the difference between Cache and PageCache in WebCore?

2011-02-15 Thread Aneesh Bhasin
was referring to in my earlier mail. Similar argument will also apply to Resource Cache as well. Hope that helps.. Regards, Aneesh At 2011-02-15 14:13:10,Aneesh Bhasin contact.ane...@gmail.com wrote: Hi, Here's my understanding on this : There are two types of caches in WebKit : Page Cache

Re: [webkit-dev] what's the difference between Cache and PageCache in WebCore?

2011-02-14 Thread Aneesh Bhasin
Hi, Here's my understanding on this : There are two types of caches in WebKit : Page Cache and Resource Cache. Resource Cache as the name suggests is to hold raw (e.g. CSS, JS etc.) as well as decoded (e.g images) resources so that sites which share these resources do not need to go to the

Re: [webkit-dev] Regarding the preload scanner in WebKit

2010-12-31 Thread Aneesh Bhasin
Hi Adam, Thanks for the quick reply. A few more questions for my own understanding : On Thu, Dec 30, 2010 at 10:08 AM, Adam Barth aba...@webkit.org wrote: On Wed, Dec 29, 2010 at 8:19 PM, Aneesh Bhasin contact.ane...@gmail.com wrote: I have been reading about the preload scanner

[webkit-dev] Regarding the preload scanner in WebKit

2010-12-29 Thread Aneesh Bhasin
Hi All, I have been reading about the preload scanner that is supported in the WebKit since quite some time now ( http://webkit.org/blog/166/optimizing-page-loading-in-web-browser/ ) . As per my understanding (please correct me if I am wrong), the preload scanner kicks in when the main parser has

Re: [webkit-dev] Page Cache for web-pages with plugin

2010-12-21 Thread Aneesh Bhasin
a new session - this hot cache might be useful if e.g. the user usually browses the same set of sites. Any idea if any one has worked on it or if it is even possible from an implementation point of view ? regards, Aneesh On Mon, Dec 20, 2010 at 1:29 AM, Aneesh Bhasin contact.ane...@gmail.com

[webkit-dev] Page Cache for web-pages with plugin

2010-12-16 Thread Aneesh Bhasin
Hi All, I was wondering as to what is the current status for maintaining a page cache for webpages which contain some plugin ( https://bugs.webkit.org/show_bug.cgi?id=13634) ? The last update on that bug report said that work is ongoing towards it. If someone could point me to the right direction

[webkit-dev] scroll event firing for WebKit Gtk port

2010-11-01 Thread Aneesh Bhasin
Hi All, I am trying to figure out which functions are triggered when we scroll a webpage in the Gtk port of WebKit. I am using GtkLauncher for the experiments. I could see webkit_web_view_scroll_event() and webkit_web_view_real_move_cursor() (in WebKit/gtk/webkit/webkitwebview.cpp) being

Re: [webkit-dev] scroll event firing for WebKit Gtk port

2010-11-01 Thread Aneesh Bhasin
- called when scrolling the page by pressing the arrows on scrollbar or by dragging the scrollbar. Regards, Aneesh On Mon, Nov 1, 2010 at 5:05 PM, Aneesh Bhasin contact.ane...@gmail.com wrote: Hi All, I am trying to figure out which functions are triggered when we scroll a webpage

[webkit-dev] when is expose_event fired

2010-10-21 Thread Aneesh Bhasin
Hi All, I am working on the Gtk port of webkit and using GtkLauncher for some experimentation and using a fairly recent WebKit version. I am trying to add some code in webkit_web_view_expose_event (in WebKit/gtk/webkit/webkitwebview.cpp) which basically finds all elements of a particular tag

[webkit-dev] Implementation of 3d transforms in webkit ?

2010-03-10 Thread Aneesh Bhasin
Hi all, I am new to webkit code-base and am trying to delve a bit deeper into webkit code and could see that webkit 3d transformations are implemented in WebCore/platform/graphics/transforms/TransformationMatrix.cpp. Is there any reason for not using a library (e.g. clutter) to perform these

Re: [webkit-dev] Documentation on internals of WebKit

2009-07-15 Thread Aneesh Bhasin
Thanks for the pointers - I will have a look at the blog. Also, Conrad, my primary objective is to understand the code-flow in webkit and then to see if image decoding and javascript could be optimized. So, if you have any helpful pointers in this regard, please let me know. Regards, Aneesh On

[webkit-dev] Documentation on internals of WebKit

2009-07-14 Thread Aneesh Bhasin
Hi All, I am sure this has been asked before but I cannot seem to find anything related to it : Is there any documentation related to the internals (and not just external APIs) of webkit ? e.g. - regarding how javascript is parsed/executed, block-level diagram of the source and other such things