Re: [webkit-dev] WebKit memory management?

2008-09-17 Thread zaheer ahmad
This makes it impossible to correctly shut down WebKit at runtime on this topic, i see that few singleton/global objects (ResourceHandleManager, Cache, allPages(Page.cpp) ) and possibly more are not getting destructed when webview is closed on the linux/gtk port. I dont know if this is an

[webkit-dev] Tweaking cache size for embedded browser

2008-09-17 Thread zaheer ahmad
hi, webkit currently reserves 8Mb of cache space (refer: Cache.cpp). This seems too high for an embedded browser that should work with as less as 10Mb of RAM. Other than the performance/reload of resource impact are there any side effects by reducing this or totally disabling it. one feature that

Re: [webkit-dev] Tweaking cache size for embedded browser

2008-09-17 Thread Paul Pedriana
That was discussed last month. See the thread at: https://lists.webkit.org/pipermail/webkit-dev/2008-August/004719.html I am currently running my copy like this: enum { DefaultCapacity = 2 * 256 * 1024 / sizeof(Register)}; // Originally (2 * 1024 * 1024 / sizeof(Register)) enum {

Re: [webkit-dev] Tweaking cache size for embedded browser

2008-09-17 Thread zaheer ahmad
i think the below is related to JS engine. i was referring to the cached resources(css, js, images etc) - WebCore/loader/Cache.cpp:44 static const int cDefaultCacheCapacity = 8192 * 1024; regards, Zaheer On Wed, Sep 17, 2008 at 1:23 PM, Paul Pedriana [EMAIL PROTECTED] wrote: That was

Re: [webkit-dev] Tweaking cache size for embedded browser

2008-09-17 Thread Paul Pedriana
Woops; my mistake. For that I edited WebView::setCacheModel from this: unsigned long long memSize = 256; to this: unsigned long long memSize = 32; and I think that affects the same system, as setCacheModel calls cache()-setCapacities() to explicitly override the default value. That is

[webkit-dev] Removing of COM registration in Windows builds means C# .Net clients can no longer be built?

2008-09-17 Thread Giles Jermy
Does anyonw know how to generate C# clients for WebKit since COM registration has been removed from trunk? As per Changeset 36245 http://trac.webkit.org/changeset/36245 for trunk/WebKit/win/ForEachCoClass.cpp http://trac.webkit.org/browser/trunk/WebKit/win/ForEachCoClass.cpp?rev=

Re: [webkit-dev] Compilation error for k:\webkit\webcore\css\CSSParser.cpp

2008-09-17 Thread Shadakshari Hiremath
Hi Ravindra, I installed gperf version 3.0.2 and regenerated the CSSValueKeywords.gperf from vc 2005 express solution of webkit. The contents of this file did not change. The problem still remains. I am trying to build webkit outside cygwin and inside a command prompt with WIN ARM GCC compiler

[webkit-dev] Which make file or build file to be changed to compile with new compiler

2008-09-17 Thread Shadakshari Hiremath
Hi WebKit Forum, I am new to webkit and don't know much about how build process works. My aim is to build webkit on a new platform using winarm gcc cross compiler. Which make/build files need to be modified for compiling with gcc? Thanks in advance. Regards, Shaddu