diff options
Diffstat (limited to 'net/socket')
-rw-r--r-- | net/socket/client_socket_pool_base.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/net/socket/client_socket_pool_base.cc b/net/socket/client_socket_pool_base.cc index 6b2a75d..e67b4e7 100644 --- a/net/socket/client_socket_pool_base.cc +++ b/net/socket/client_socket_pool_base.cc @@ -22,14 +22,6 @@ using base::TimeDelta; -// Disable FPO for all the functions in this file. This is to help track down -// http://crbug.com/109876. With FPO enabled, the stacktrace capture is -// unreliable, and we can't see the specific deletion point of the Group. -// TODO(eroman): Remove it when done investigating. -#if defined(COMPILER_MSVC) -#pragma optimize("y", off) -#endif - namespace { // Indicate whether we should enable idle socket cleanup timer. When timer is @@ -1263,8 +1255,3 @@ void ClientSocketPoolBaseHelper::Group::RemoveAllJobs() { } // namespace internal } // namespace net - -// Restore default optimization settings. -#if defined(COMPILER_MSVC) -#pragma optimize("", on) -#endif |