[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread PhistucK
Really? the statistics show that many people are using the app mode?Or did you mean web apps, as in web application websites? ☆PhistucK On Sun, Jun 21, 2009 at 21:03, Mike Belshe wrote: > I assume he's not a benchmark pro, but he did a decent job already. We > can nitpick his sampling method

[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread Lei Zhang
FYI, --single-process only works in Chromium. It's disabled in Google Chrome. Search for switches::kSingleProcess in http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/chrome_dll_main.cc?revision=18801&view=markup On Sun, Jun 21, 2009 at 4:22 PM, est wrote: > > use --single-process > > O

[chromium-dev] Re: Coding style reminders

2009-06-21 Thread Mohamed Mansour
And for new readers on dev mailing list, chromium follows this code standard:http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml A good read! -- Mohamed Mansour On Sun, Jun 21, 2009 at 9:05 PM, Ben Goodger (Google) wrote

[chromium-dev] Coding style reminders

2009-06-21 Thread Ben Goodger (Google)
A couple of brief reminders: It's common to have an object implement an interface. Often times, the order of function decls in the concrete class matches the order in the interface class. This makes it very easy to know where to add new method declarations. Also, the order in the .cc file matches

[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread est
use --single-process On Jun 21, 3:37 pm, n179911 wrote: > Hi, > > There is a test which compares memory usage among rendering > engineshttp://dotnetperls.com/chrome-memory > > From the site, it shows the maximum memory usage of Chrome is more > than Safari is > 2 times. > Since both of them are

[chromium-dev] Re: Number of threads in Render Process on MacOSX

2009-06-21 Thread Thomas Van Lenten
If you look at a lot of Mac executables, you find that the system can create threads in response to same API calls. On the copy of Chrome I'm currently running, I seeing one renderer with 5 threads and another with 6. At quick glance the extra are the OS doing some extra work in response to api c

[chromium-dev] Re: changing chrome_exe to chrome, converting chrome.exe to gyp

2009-06-21 Thread Marc-Antoine Ruel
FYI, I'm pretty sure you'll receive a WontFix, especially that VS2010 is using MSBuild instead of vcbuild. M-A On Fri, Jun 19, 2009 at 6:01 PM, Andrew Scherkus wrote: > Is building the folder expected behaviour, or something we should file with > Microsoft?  Could just be me but "Build " seems p

[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread Mike Belshe
I assume he's not a benchmark pro, but he did a decent job already. We can nitpick his sampling methodology - but it won't change the result. He is correct that many procs is far more memory consuming than single proc, and we already knew this. This is a tradeoff we made consciously and delibera

[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread Mike Belshe
On Sun, Jun 21, 2009 at 12:37 AM, n179911 wrote: > > Hi, > > There is a test which compares memory usage among rendering engines > http://dotnetperls.com/chrome-memory > > From the site, it shows the maximum memory usage of Chrome is more > than Safari is > 2 times. > Since both of them are Webki

[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread Peter Kasting
On Sun, Jun 21, 2009 at 1:25 AM, Elliot Glaysher (Chromium) < e...@chromium.org> wrote: > "Google Chrome posted the highest maximum memory usage ***when all > chrome.exe processes were summed***, reaching 1.18 gigabytes, while > Firefox posted the lowest maximum memory levels of 327.65 megabytes."

[chromium-dev] Re: Memory usage in chrome

2009-06-21 Thread Elliot Glaysher (Chromium)
On Sun, Jun 21, 2009 at 12:37 AM, n179911 wrote: > There is a test which compares memory usage among rendering engines > http://dotnetperls.com/chrome-memory > > From the site, it shows the maximum memory usage of Chrome is more > than Safari is > 2 times. >From TFA: "Google Chrome posted the hi

[chromium-dev] Memory usage in chrome

2009-06-21 Thread n179911
Hi, There is a test which compares memory usage among rendering engines http://dotnetperls.com/chrome-memory >From the site, it shows the maximum memory usage of Chrome is more than Safari is > 2 times. Since both of them are Webkit base, does that mean the V8 engine uses twice as much memory as