OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/browser_main.h" | 5 #include "chrome/browser/browser_main.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 #include "content/common/hi_res_timer_manager.h" | 93 #include "content/common/hi_res_timer_manager.h" |
94 #include "content/common/main_function_params.h" | 94 #include "content/common/main_function_params.h" |
95 #include "content/common/result_codes.h" | 95 #include "content/common/result_codes.h" |
96 #include "grit/app_locale_settings.h" | 96 #include "grit/app_locale_settings.h" |
97 #include "grit/chromium_strings.h" | 97 #include "grit/chromium_strings.h" |
98 #include "grit/generated_resources.h" | 98 #include "grit/generated_resources.h" |
99 #include "grit/platform_locale_settings.h" | 99 #include "grit/platform_locale_settings.h" |
100 #include "net/base/cookie_monster.h" | 100 #include "net/base/cookie_monster.h" |
101 #include "net/base/net_module.h" | 101 #include "net/base/net_module.h" |
102 #include "net/base/network_change_notifier.h" | 102 #include "net/base/network_change_notifier.h" |
| 103 #include "net/http/http_basic_stream.h" |
103 #include "net/http/http_network_layer.h" | 104 #include "net/http/http_network_layer.h" |
104 #include "net/http/http_stream_factory.h" | 105 #include "net/http/http_stream_factory.h" |
105 #include "net/socket/client_socket_pool_base.h" | 106 #include "net/socket/client_socket_pool_base.h" |
106 #include "net/socket/client_socket_pool_manager.h" | 107 #include "net/socket/client_socket_pool_manager.h" |
107 #include "net/socket/tcp_client_socket.h" | 108 #include "net/socket/tcp_client_socket.h" |
108 #include "net/spdy/spdy_session.h" | 109 #include "net/spdy/spdy_session.h" |
109 #include "net/spdy/spdy_session_pool.h" | 110 #include "net/spdy/spdy_session_pool.h" |
110 #include "net/url_request/url_request.h" | 111 #include "net/url_request/url_request.h" |
111 #include "net/url_request/url_request_throttler_manager.h" | 112 #include "net/url_request/url_request_throttler_manager.h" |
112 #include "net/websockets/websocket_job.h" | 113 #include "net/websockets/websocket_job.h" |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 #endif | 201 #endif |
201 | 202 |
202 #if defined(TOOLKIT_USES_GTK) | 203 #if defined(TOOLKIT_USES_GTK) |
203 #include "ui/gfx/gtk_util.h" | 204 #include "ui/gfx/gtk_util.h" |
204 #endif | 205 #endif |
205 | 206 |
206 #if defined(TOUCH_UI) && defined(HAVE_XINPUT2) | 207 #if defined(TOUCH_UI) && defined(HAVE_XINPUT2) |
207 #include "views/touchui/touch_factory.h" | 208 #include "views/touchui/touch_factory.h" |
208 #endif | 209 #endif |
209 | 210 |
| 211 using net::internal::ClientSocketPoolBaseHelper; |
| 212 using net::HttpBasicStream; |
| 213 |
210 namespace net { | 214 namespace net { |
211 class NetLog; | 215 class NetLog; |
212 } // namespace net | 216 } // namespace net |
213 | 217 |
214 // BrowserMainParts ------------------------------------------------------------ | 218 // BrowserMainParts ------------------------------------------------------------ |
215 | 219 |
216 BrowserMainParts::BrowserMainParts(const MainFunctionParams& parameters) | 220 BrowserMainParts::BrowserMainParts(const MainFunctionParams& parameters) |
217 : parameters_(parameters), | 221 : parameters_(parameters), |
218 parsed_command_line_(parameters.command_line_) { | 222 parsed_command_line_(parameters.command_line_) { |
219 } | 223 } |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 if (parsed_command_line().HasSwitch(switches::kMaxSpdyConcurrentStreams)) { | 471 if (parsed_command_line().HasSwitch(switches::kMaxSpdyConcurrentStreams)) { |
468 int value = 0; | 472 int value = 0; |
469 base::StringToInt(parsed_command_line().GetSwitchValueASCII( | 473 base::StringToInt(parsed_command_line().GetSwitchValueASCII( |
470 switches::kMaxSpdyConcurrentStreams), | 474 switches::kMaxSpdyConcurrentStreams), |
471 &value); | 475 &value); |
472 if (value > 0) | 476 if (value > 0) |
473 net::SpdySession::set_max_concurrent_streams(value); | 477 net::SpdySession::set_max_concurrent_streams(value); |
474 } | 478 } |
475 } | 479 } |
476 | 480 |
| 481 // If --bytes-read-vs-last-accessed-decay-coef is not specified, run an A/B |
| 482 // test for choosing the warmest socket. |
| 483 void BrowserMainParts::WarmConnectionFieldTrial() { |
| 484 const CommandLine& command_line = parsed_command_line(); |
| 485 if (command_line.HasSwitch(switches::kTcpSocketEstimatedCwndDecayCoef)) { |
| 486 std::string alpha_str = command_line.GetSwitchValueASCII( |
| 487 switches::kTcpSocketEstimatedCwndDecayCoef); |
| 488 double coef = 0; |
| 489 base::StringToDouble(alpha_str, &coef); |
| 490 ClientSocketPoolBaseHelper::set_tcp_socket_estimated_cwnd_decay_coef( |
| 491 coef); |
| 492 HttpBasicStream::set_warm_connection_field_trial_group("manual"); |
| 493 return; |
| 494 } |
| 495 |
| 496 const base::FieldTrial::Probability kWarmSocketDivisor = 100; |
| 497 const base::FieldTrial::Probability kWarmSocketProbability = 33; |
| 498 |
| 499 // After January 30, 2013 builds, it will always be in default group. |
| 500 scoped_refptr<base::FieldTrial> warmest_socket_trial( |
| 501 new base::FieldTrial( |
| 502 "WarmSocketImpact", kWarmSocketDivisor, "last_accessed_socket", |
| 503 2013, 1, 30)); |
| 504 |
| 505 // Default value is USE_LAST_SOCKET. |
| 506 const int last_accessed_socket = warmest_socket_trial->kDefaultGroupNumber; |
| 507 const int warmest_socket = warmest_socket_trial->AppendGroup( |
| 508 "warmest_socket", kWarmSocketProbability); |
| 509 const int warm_socket = warmest_socket_trial->AppendGroup( |
| 510 "warm_socket", kWarmSocketProbability); |
| 511 |
| 512 const int warmest_socket_trial_group = warmest_socket_trial->group(); |
| 513 |
| 514 if (warmest_socket_trial_group == last_accessed_socket) { |
| 515 ClientSocketPoolBaseHelper::SetSocketReusePolicy( |
| 516 ClientSocketPoolBaseHelper::USE_LAST_SOCKET); |
| 517 HttpBasicStream::set_warm_connection_field_trial_group( |
| 518 "last_accessed_socket"); |
| 519 } else if (warmest_socket_trial_group == warmest_socket) { |
| 520 ClientSocketPoolBaseHelper::SetSocketReusePolicy( |
| 521 ClientSocketPoolBaseHelper::USE_WARMEST_SOCKET); |
| 522 HttpBasicStream::set_warm_connection_field_trial_group( |
| 523 "warmest_socket"); |
| 524 } else if (warmest_socket_trial_group == warm_socket) { |
| 525 ClientSocketPoolBaseHelper::SetSocketReusePolicy( |
| 526 ClientSocketPoolBaseHelper::USE_WARM_SOCKET); |
| 527 HttpBasicStream::set_warm_connection_field_trial_group( |
| 528 "warm_socket"); |
| 529 } else { |
| 530 NOTREACHED() << "Invalid bytes_read_vs_last_accessed_alpha"; |
| 531 } |
| 532 } |
| 533 |
| 534 |
477 // If neither --enable-connect-backup-jobs or --disable-connect-backup-jobs is | 535 // If neither --enable-connect-backup-jobs or --disable-connect-backup-jobs is |
478 // specified, run an A/B test for automatically establishing backup TCP | 536 // specified, run an A/B test for automatically establishing backup TCP |
479 // connections when a certain timeout value is exceeded. | 537 // connections when a certain timeout value is exceeded. |
480 void BrowserMainParts::ConnectBackupJobsFieldTrial() { | 538 void BrowserMainParts::ConnectBackupJobsFieldTrial() { |
481 if (parsed_command_line().HasSwitch(switches::kEnableConnectBackupJobs)) { | 539 if (parsed_command_line().HasSwitch(switches::kEnableConnectBackupJobs)) { |
482 net::internal::ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled( | 540 net::internal::ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled( |
483 true); | 541 true); |
484 } else if (parsed_command_line().HasSwitch( | 542 } else if (parsed_command_line().HasSwitch( |
485 switches::kDisableConnectBackupJobs)) { | 543 switches::kDisableConnectBackupJobs)) { |
486 net::internal::ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled( | 544 net::internal::ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled( |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 chrome_browser_net_websocket_experiment::WebSocketExperimentRunner::Start(); | 644 chrome_browser_net_websocket_experiment::WebSocketExperimentRunner::Start(); |
587 | 645 |
588 // Note: make sure to call ConnectionFieldTrial() before | 646 // Note: make sure to call ConnectionFieldTrial() before |
589 // ProxyConnectionsFieldTrial(). | 647 // ProxyConnectionsFieldTrial(). |
590 ConnectionFieldTrial(); | 648 ConnectionFieldTrial(); |
591 SocketTimeoutFieldTrial(); | 649 SocketTimeoutFieldTrial(); |
592 ProxyConnectionsFieldTrial(); | 650 ProxyConnectionsFieldTrial(); |
593 prerender::ConfigurePrefetchAndPrerender(parsed_command_line()); | 651 prerender::ConfigurePrefetchAndPrerender(parsed_command_line()); |
594 SpdyFieldTrial(); | 652 SpdyFieldTrial(); |
595 ConnectBackupJobsFieldTrial(); | 653 ConnectBackupJobsFieldTrial(); |
| 654 WarmConnectionFieldTrial(); |
596 } | 655 } |
597 | 656 |
598 // ----------------------------------------------------------------------------- | 657 // ----------------------------------------------------------------------------- |
599 // TODO(viettrungluu): move more/rest of BrowserMain() into above structure | 658 // TODO(viettrungluu): move more/rest of BrowserMain() into above structure |
600 | 659 |
601 namespace { | 660 namespace { |
602 | 661 |
603 // This function provides some ways to test crash and assertion handling | 662 // This function provides some ways to test crash and assertion handling |
604 // behavior of the program. | 663 // behavior of the program. |
605 void HandleTestParameters(const CommandLine& command_line) { | 664 void HandleTestParameters(const CommandLine& command_line) { |
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1970 #if defined(OS_CHROMEOS) | 2029 #if defined(OS_CHROMEOS) |
1971 // To be precise, logout (browser shutdown) is not yet done, but the | 2030 // To be precise, logout (browser shutdown) is not yet done, but the |
1972 // remaining work is negligible, hence we say LogoutDone here. | 2031 // remaining work is negligible, hence we say LogoutDone here. |
1973 chromeos::BootTimesLoader::Get()->AddLogoutTimeMarker("LogoutDone", | 2032 chromeos::BootTimesLoader::Get()->AddLogoutTimeMarker("LogoutDone", |
1974 false); | 2033 false); |
1975 chromeos::BootTimesLoader::Get()->WriteLogoutTimes(); | 2034 chromeos::BootTimesLoader::Get()->WriteLogoutTimes(); |
1976 #endif | 2035 #endif |
1977 TRACE_EVENT_END_ETW("BrowserMain", 0, 0); | 2036 TRACE_EVENT_END_ETW("BrowserMain", 0, 0); |
1978 return result_code; | 2037 return result_code; |
1979 } | 2038 } |
OLD | NEW |