| Index: chrome/browser/io_thread.h
|
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
|
| index 96e109648ebac69b167d11c7a5c30ccaf581f320..15dbef3e04b9ad29bc600dac7e9f0e0aad86c6d0 100644
|
| --- a/chrome/browser/io_thread.h
|
| +++ b/chrome/browser/io_thread.h
|
| @@ -210,6 +210,8 @@ class IOThread : public content::BrowserThreadDelegate {
|
|
|
| Optional<bool> enable_npn;
|
|
|
| + Optional<bool> enable_brotli;
|
| +
|
| Optional<bool> enable_quic;
|
| Optional<bool> enable_quic_for_proxies;
|
| Optional<bool> enable_quic_port_selection;
|
| @@ -350,6 +352,10 @@ class IOThread : public content::BrowserThreadDelegate {
|
| return NULL;
|
| #endif
|
| }
|
| +
|
| + // Returns true if Brotli Content-Encoding should be enabled.
|
| + static bool ShouldEnableBrotli(const base::CommandLine& command_line);
|
| +
|
| // Configures QUIC options in |globals| based on the flags in |command_line|
|
| // as well as the QUIC field trial group and parameters. Must be called
|
| // before ConfigureSpdyGlobals.
|
|
|