# Functions
NewChrome returns a new `Chrome` instance configured by 'uri'.
NewNoneChrome implements the Chrome interface that always returns a "not authorized" error.
RegisterChrome registers 'scheme' as a key pointing to 'init_func' in an internal lookup table used to create new `Chrome` instances by the `NewChrome` method.
Schemes returns the list of schemes that have been registered.
# Structs
type NoneChrome implements the Chrome interface that always returns a "not authorized" error.
# Interfaces
type Chrome is a simple interface for enforcing chromeentication in HTTP handlers.
# Type aliases
ChromeInitializationFunc is a function defined by individual chrome package and used to create an instance of that chrome.