the Chromium logo

The Chromium Projects

Proxy settings and fallback

On Windows, Chromium uses WinInet's proxy settings.

Consequently, it is important that Chromium interpret and apply these proxy settings in the same manner as WinInet. Otherwise the same proxy settings may give different results in Chromium than in other WinInet-based applications (like Internet Explorer).

In Firefox, the proxy settings are divided into four different modes using radio buttons. This modal approach makes it pretty easy to understand which proxy settings will be used, since there is only one set of choices.

image

However in Internet Explorer, the settings are more complex.

All of the various settings are presented in the UI as optional checkboxes.

This makes it unclear what is supposed to happen when conflicting choices are given.

Screenshot of IE's settings dialog:

image + image

How WinInet resolves the ambiguity

[The following was determined experimentally using Internet Explorer 8 on Windows XP. (Couldn't find an official explanation of the steps to link to).]

The way Internet Explorer applies these settings is using a fallback scheme during initialization:

image

TODO(eroman): haven't verified fallback for SOCKS.

There is a secondary fallback mechanism at runtime:

image image

So for example if auto-detect was chosen during the initialization sequence, but the PAC script is failing during execution of FindProxyForURL(), it will fallback to direct (regardless of whether there are manual proxy settings).