diff options
| author | pkasting <pkasting@chromium.org> | 2015-04-13 20:40:50 -0700 |
|---|---|---|
| committer | Commit bot <commit-bot@chromium.org> | 2015-04-14 03:41:16 +0000 |
| commit | eb49ae532e7b2595cfaec8a668f3705ab52733a7 (patch) | |
| tree | 101f529904c7ea6f8ede0dca0a71e02a033e410c /jingle | |
| parent | 9509ec80cf8430372ea985e57461c317c945be9b (diff) | |
| download | chromium_src-eb49ae532e7b2595cfaec8a668f3705ab52733a7.zip chromium_src-eb49ae532e7b2595cfaec8a668f3705ab52733a7.tar.gz chromium_src-eb49ae532e7b2595cfaec8a668f3705ab52733a7.tar.bz2 | |
Update instrumentation for various functions janky on the Mac IO thread.
BUG=455469,458404,457528,457525,455884,454983
TEST=none
TBR=zea,mmenke,jochen
Review URL: https://codereview.chromium.org/1062683005
Cr-Commit-Position: refs/heads/master@{#324995}
Diffstat (limited to 'jingle')
| -rw-r--r-- | jingle/glue/proxy_resolving_client_socket.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jingle/glue/proxy_resolving_client_socket.cc b/jingle/glue/proxy_resolving_client_socket.cc index 5a6e068..456e100 100644 --- a/jingle/glue/proxy_resolving_client_socket.cc +++ b/jingle/glue/proxy_resolving_client_socket.cc @@ -9,6 +9,7 @@ #include "base/bind_helpers.h" #include "base/compiler_specific.h" #include "base/logging.h" +#include "base/profiler/scoped_tracker.h" #include "net/base/io_buffer.h" #include "net/base/load_flags.h" #include "net/base/net_errors.h" @@ -212,6 +213,10 @@ void ProxyResolvingClientSocket::ProcessProxyResolveDone(int status) { } void ProxyResolvingClientSocket::ProcessConnectDone(int status) { + // TODO(pkasting): Remove ScopedTracker below once crbug.com/455884 is fixed. + tracked_objects::ScopedTracker tracking_profile( + FROM_HERE_WITH_EXPLICIT_FUNCTION( + "455884 ProxyResolvingClientSocket::OnConnectDone")); if (status != net::OK) { // If the connection fails, try another proxy. status = ReconsiderProxyAfterError(status); |
