summaryrefslogtreecommitdiffstats
path: root/content/renderer/background_sync
diff options
context:
space:
mode:
authorrockot <rockot@chromium.org>2015-10-05 17:37:04 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-06 00:38:28 +0000
commitde281b568ad8d0249d6edd3040122e56c3b62dfe (patch)
treeb3e0d796f1a45c62f1094717240e2e3edd200395 /content/renderer/background_sync
parent20453a47d6e8e9d7c4cdb7bcf0d2315a6551520a (diff)
downloadchromium_src-de281b568ad8d0249d6edd3040122e56c3b62dfe.zip
chromium_src-de281b568ad8d0249d6edd3040122e56c3b62dfe.tar.gz
chromium_src-de281b568ad8d0249d6edd3040122e56c3b62dfe.tar.bz2
Add more tracking detail to Mojo async waits.
Should help debug http://crbug.com/534719 by annotating wait IDs coming from Connector with additional information so they can be associated with specific bindings objects in the child process. This should be reverted along with r350917 once more information is collected. BUG=534719 R=sky@chromium.org TBR=bengr@chromium.org for dom_distiller TBR=jam@chromium.org for content, ipc Review URL: https://codereview.chromium.org/1376593005 Cr-Commit-Position: refs/heads/master@{#352485}
Diffstat (limited to 'content/renderer/background_sync')
-rw-r--r--content/renderer/background_sync/background_sync_client_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/renderer/background_sync/background_sync_client_impl.cc b/content/renderer/background_sync/background_sync_client_impl.cc
index 9ba8af3..d19bcfb 100644
--- a/content/renderer/background_sync/background_sync_client_impl.cc
+++ b/content/renderer/background_sync/background_sync_client_impl.cc
@@ -27,7 +27,7 @@ BackgroundSyncClientImpl::BackgroundSyncClientImpl(
int64 service_worker_registration_id,
mojo::InterfaceRequest<BackgroundSyncServiceClient> request)
: service_worker_registration_id_(service_worker_registration_id),
- binding_(this, request.Pass()),
+ binding_(this, request.Pass(), 13),
callback_seq_num_(0) {}
void BackgroundSyncClientImpl::Sync(int64_t handle_id,