I have been wondering - how does Google Chrome install in a single click?
http://www.google.com/chrome/eula.html?hl=en&brand=CHMB&utm_campaign=en&utm_source=en-ha-na-us-sk&utm_medium=ha&installdataindex=homepagepromo
Its not ClickOnce (that behaves differently) and this works cross browser. Any ideas?

link|improve this question
feedback

migrated from stackoverflow.com Jan 27 '11 at 5:27

This question came from our site for professional and enthusiast programmers.

2 Answers

It actually is ClickOnce.

 function installViaClickOnce(opt_navDocument) {
    queueThankyou(10000, '\x26clickonceinstalled=', opt_navDocument);
    downloadInstaller(areStatsEnabled(), _GU_buildClickOncePath, "/update2/installers/clickonce/GoogleInstaller_en.application");
    showThrobber(true);
 }

Google's ClickOnce application installs the installer for Chrome which in turn does the download for the browser.

link|improve this answer
feedback

Actually it is indeed bootstrapped with the ClickOnce installer. It uses ClickOnce to get it's components onto the machine and then installs the rest of chrome via the downloaded components.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown