Which GUI library does Google Chrome use?

Viewed 30439

What GUI library does Google Chrome use?

5 Answers

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

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.

Related