hasen
hasen

Reputation: 166252

Which GUI library does Google Chrome use?

What GUI library does Google Chrome use?

Upvotes: 59

Views: 34077

Answers (5)

Waylon Flinn
Waylon Flinn

Reputation: 20257

As of May 2014 Google Chrome uses it's own custom UI stack called Aura. This is currently the case for all platforms except OSX.

References:

Upvotes: 31

G Hx
G Hx

Reputation: 1147

You probably want their document entitled "Conventions and patterns for multi-platform development." Your answer is

Mac -> Cocoa,
Linux -> GTK,
Windows -> Their own custom "Windows Views"

You'll also see have an experimental "GTK Views", so it sounds like they're aiming for their own abstraction?

Upvotes: 11

Paweł Hajdan
Paweł Hajdan

Reputation: 18552

On Linux it uses GTK+, on Mac OS X Cocoa, and on Windows a custom views library, see http://www.youtube.com/watch?v=WsvNebq1dRg and also documents from http://dev.chromium.org:

Upvotes: 32

Shay Erlichmen
Shay Erlichmen

Reputation: 31928

On Windows WTL for the (well...) chrome, and WebKit for the HTML rendering.

Upvotes: 8

Jesper
Jesper

Reputation: 79

WTL on Windows, as Shay said. All UI in the Mac and Linux versions is being written from scratch in Cocoa and GTK+ respectively. Only the logic (and WebKit, which renders the web pages) is fully cross-platform.

Upvotes: 5

Related Questions