| Index: chrome/browser/browser_main.cc
|
| diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
|
| index 7d645fe9fa174e737fbafbc0dc508aa0d6efb5c9..990ffecbbc59509b16a18bfb5e59dbd6683a08ea 100644
|
| --- a/chrome/browser/browser_main.cc
|
| +++ b/chrome/browser/browser_main.cc
|
| @@ -386,16 +386,6 @@ void InitializeNetworkOptions(const CommandLine& parsed_command_line) {
|
| net::CookieMonster::EnableFileScheme();
|
| }
|
|
|
| - if (parsed_command_line.HasSwitch(switches::kFixedHttpPort)) {
|
| - net::HttpNetworkSession::set_fixed_http_port(StringToInt(
|
| - parsed_command_line.GetSwitchValueASCII(switches::kFixedHttpPort)));
|
| - }
|
| -
|
| - if (parsed_command_line.HasSwitch(switches::kFixedHttpsPort)) {
|
| - net::HttpNetworkSession::set_fixed_https_port(StringToInt(
|
| - parsed_command_line.GetSwitchValueASCII(switches::kFixedHttpsPort)));
|
| - }
|
| -
|
| if (parsed_command_line.HasSwitch(switches::kIgnoreCertificateErrors))
|
| net::HttpNetworkTransaction::IgnoreCertificateErrors(true);
|
|
|
|
|