diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/base_switches.cc | 3 | ||||
-rw-r--r-- | base/base_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/base/base_switches.cc b/base/base_switches.cc index d05d8f4..c9d65cb0f 100644 --- a/base/base_switches.cc +++ b/base/base_switches.cc @@ -30,5 +30,8 @@ const wchar_t kProcessType[] = L"type"; // Enable DCHECKs in release mode. const wchar_t kEnableDCHECK[] = L"enable-dcheck"; +// Refuse to make HTTP connections and refuse to accept certificate errors. +const wchar_t kForceHTTPS[] = L"force-https"; + } // namespace switches diff --git a/base/base_switches.h b/base/base_switches.h index 31879a1..79f9e2b 100644 --- a/base/base_switches.h +++ b/base/base_switches.h @@ -16,6 +16,7 @@ extern const wchar_t kFullMemoryCrashReport[]; extern const wchar_t kNoErrorDialogs[]; extern const wchar_t kProcessType[]; extern const wchar_t kEnableDCHECK[]; +extern const wchar_t kForceHTTPS[]; } // namespace switches |