up vote 97 down vote favorite
34
share [g+] share [fb]

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?

link|improve this question
11  
This seems like a fair question for someone who doesn't fully understand the differences & benefits/costs between managed and unmanaged code. – Rex M Mar 8 '09 at 5:09
3  
Yes, and dismissing it out of hand is doing the question (and the whole idea of managed code) a big disservice. – Thilo Mar 8 '09 at 5:12
18  
Why would you think that SO users can guess at Google's reasoning? – Jay Bazuzi Mar 8 '09 at 5:22
9  
closing both questions for being duplicates of each other is rather stupid! just close one and leave the other – hasen j Mar 8 '09 at 7:25
5  
Because >= 30 answers were posted. That automatically forces wiki mode, under the assumption that if there was a real answer then it would already have been posted. – Shog9 Mar 13 '09 at 20:14
show 16 more comments
feedback

closed as not a real question by Will Sep 8 '11 at 14:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

35 Answers

1 2

For 'great performance profile' check out what a managed app does to your machine, something like VS.NET (and don't forget it is due to partial .NET adoption, if it was full-on you'd need a cray to boot it, just like Singularity which won't boot btw).

Silverlight and WPF are another few examples of great performance killers, eating CPUs.

VMs are written in C++, and by reading that Kronos pointer FAQ and believing in it, by definition you wouldn't have a Java or CLR VM available today, yesterday or ever.

Arrogance comes from simplifiers in managed land really..

link|improve this answer
show 3 more comments
feedback

When Google wanted their own browser, they did what any other company would do, they hired someone with experience developing web browsers to lead their project. Ben Goodger, who was previously the lead Firefox developer, obviously had a lot more experince in C++ than C# or java (since Firefox is written in C++).

Its great to think of Google as so full of super-geniuses that they let their tea ladies design brand new browsers in each of the available languages (in the time they're waiting for the kettle to boil) and then released the fastest to us as Chrome; but the tangled twisted mess of web languages (HTML, CSS and Javascript) really is very hard to interpret.

link|improve this answer
feedback

A benefit from writing it in C++ over C# is that they can as they plan to release versions for other platforms other than Windows. While it's possible to do this with .NET too it would have meant people would have to install the mono runtime which is not a very common thing on non Windows computers. Similarly writing it in Java would have created the dependency to the Java runtime, which would have been a better option. But it's not a very good idea to write something like a browser for a virtual machine because of startup times and performance, if they want to compete with firefox and other good browsers.

The other reason is the choice of rendering engines. Because they are using webkit which is written in C++ it's an obvious choice.

link|improve this answer
feedback

Portability and performance are definitely one of the many reasons. I think Java would have been great except that you're now relying on the Java VM which is a punch in the face when you compare such a product to FireFox or IE which are standalone products. I've worked with companies that stay away from anything from Microsoft. To them it's an unnecessary dependency. Using .NET framework may not be extensible enough for what you're doing. You may want to roll out your own algorithms and logic instead of using built-in features. This is especially important for such product as a web browser which competes with giants such as FireFox, Opera, Internet Explorer and etc. You have to make it fast. You have to make it efficient. Otherwise you labor will go to waste as you're not going to be able to compete. This is why having your own framework is a better thing since it allows you to make it as good as you want it w/o getting stuck with what you have to use.

link|improve this answer
feedback

I imagine they made a trade-off of short-term benefits such as performance over long-term benefits like maintainability. C++ might be faster now than C#/Java code, but as hardware advances speed will be less relevent a benefit. It creates a terrible situation for security in that they are effectively snubbing the billions in IS work done to protect the .NET/Java Platforms from exploits. There is no way they can keep up. We might effectively be embracing the next ActiveX browser security hole by embracing Chrome.

link|improve this answer
feedback
1 2