switches.h 654 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2016 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef BRIGHTRAY_COMMON_SWITCHES_H_
  5. #define BRIGHTRAY_COMMON_SWITCHES_H_
  6. namespace brightray {
  7. namespace switches {
  8. extern const char kHostRules[];
  9. extern const char kNoProxyServer[];
  10. extern const char kProxyServer[];
  11. extern const char kProxyBypassList[];
  12. extern const char kProxyPacUrl[];
  13. extern const char kDisableHttp2[];
  14. extern const char kAuthServerWhitelist[];
  15. extern const char kAuthNegotiateDelegateWhitelist[];
  16. } // namespace switches
  17. } // namespace brightray
  18. #endif // BRIGHTRAY_COMMON_SWITCHES_H_