Global Configuration Options

This page describes the global options for Chromium. Such options are specified to Chromium as follows:

        cr.Conf( param, values )

where cr is the object returned by CR().

Here are some concrete examples of global configuration options:

        cr = CR()
        cr.Conf( 'MTU', 10 * 1024 * 1024 )
Parameter Name Value Types Description
MTU Integer This options sets the maximum transmission unit size in bytes. This is the size of network buffer that Chromium allocates for inter-node communication. Setting this options is equivalent to calling cr.MTU(bytes). The default is one megabyte.