Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1334)

Unified Diff: content/browser/service_worker/service_worker_storage.cc

Issue 636253004: ServiceWorker: Move TRACE_EVENT to avoid early return and mismatching (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/service_worker/service_worker_storage.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/service_worker/service_worker_storage.cc
diff --git a/content/browser/service_worker/service_worker_storage.cc b/content/browser/service_worker/service_worker_storage.cc
index 54eacd657f51bf4593d953a1f8bdf61a97cf6656..fa2ebe4cd277c5fb25efd7c829ab30418a4e50ed 100644
--- a/content/browser/service_worker/service_worker_storage.cc
+++ b/content/browser/service_worker/service_worker_storage.cc
@@ -252,11 +252,6 @@ void ServiceWorkerStorage::FindRegistrationForDocument(
const GURL& document_url,
const FindRegistrationCallback& callback) {
DCHECK(!document_url.has_ref());
- TRACE_EVENT_ASYNC_BEGIN1(
- "ServiceWorker",
- "ServiceWorkerStorage::FindRegistrationForDocument",
- base::Hash(document_url.spec()),
- "URL", document_url.spec());
if (!LazyInitialize(base::Bind(
&ServiceWorkerStorage::FindRegistrationForDocument,
weak_factory_.GetWeakPtr(), document_url, callback))) {
@@ -264,6 +259,10 @@ void ServiceWorkerStorage::FindRegistrationForDocument(
CompleteFindNow(scoped_refptr<ServiceWorkerRegistration>(),
SERVICE_WORKER_ERROR_FAILED, callback);
}
+ TRACE_EVENT1(
+ "ServiceWorker",
+ "ServiceWorkerStorage::FindRegistrationForDocument:LazyInitialize",
+ "URL", document_url.spec());
nhiroki 2014/10/14 02:03:26 Why don't you add TRACE_EVENT_ASYNC_XXX in LazyIni
shimazu 2014/10/14 04:10:47 I think LazyInitialize have to be tracked in order
nhiroki 2014/10/14 05:01:13 I see. If you'd like to track it, how about doing
nhiroki 2014/10/14 06:09:50 Or, if you'd like to record it as a single event (
shimazu 2014/10/14 09:07:02 Done.
return;
}
DCHECK_EQ(INITIALIZED, state_);
@@ -278,9 +277,21 @@ void ServiceWorkerStorage::FindRegistrationForDocument(
? SERVICE_WORKER_OK
: SERVICE_WORKER_ERROR_NOT_FOUND,
callback);
+ TRACE_EVENT1(
+ "ServiceWorker",
+ "ServiceWorkerStorage::FindRegistrationForDocument:NotContainsKey",
nhiroki 2014/10/14 02:03:26 nit: s/Contains/Contain I think this wouldn't hel
shimazu 2014/10/14 04:10:47 I think there is no meaning in terms of performanc
nhiroki 2014/10/14 05:01:13 Please see the previous comment.
shimazu 2014/10/14 09:07:02 Done.
+ "URL", document_url.spec());
return;
}
+ // To connect this TRACE_EVENT with the callback, TimeTicks is used for
+ // callback id.
+ int callback_id = base::TimeTicks::Now().ToInternalValue();
nhiroki 2014/10/14 02:03:26 |callback_id| should be int64 because ToInternalVa
shimazu 2014/10/14 04:10:47 Done.
+ TRACE_EVENT_ASYNC_BEGIN1(
+ "ServiceWorker",
+ "ServiceWorkerStorage::FindRegistrationForDocument",
+ callback_id,
+ "URL", document_url.spec());
database_task_runner_->PostTask(
FROM_HERE,
base::Bind(
@@ -289,7 +300,10 @@ void ServiceWorkerStorage::FindRegistrationForDocument(
base::MessageLoopProxy::current(),
document_url,
base::Bind(&ServiceWorkerStorage::DidFindRegistrationForDocument,
- weak_factory_.GetWeakPtr(), document_url, callback)));
+ weak_factory_.GetWeakPtr(),
+ document_url,
+ callback,
+ callback_id)));
}
void ServiceWorkerStorage::FindRegistrationForPattern(
@@ -769,6 +783,7 @@ void ServiceWorkerStorage::DidReadInitialData(
void ServiceWorkerStorage::DidFindRegistrationForDocument(
const GURL& document_url,
const FindRegistrationCallback& callback,
+ int callback_id,
nhiroki 2014/10/14 02:03:26 ditto.
shimazu 2014/10/14 04:10:47 Done.
const ServiceWorkerDatabase::RegistrationData& data,
const ResourceList& resources,
ServiceWorkerDatabase::Status status) {
@@ -777,7 +792,7 @@ void ServiceWorkerStorage::DidFindRegistrationForDocument(
TRACE_EVENT_ASYNC_END1(
"ServiceWorker",
"ServiceWorkerStorage::FindRegistrationForDocument",
- base::Hash(document_url.spec()),
+ callback_id,
"Status", "OK");
return;
}
@@ -792,7 +807,7 @@ void ServiceWorkerStorage::DidFindRegistrationForDocument(
TRACE_EVENT_ASYNC_END1(
"ServiceWorker",
"ServiceWorkerStorage::FindRegistrationForDocument",
- base::Hash(document_url.spec()),
+ callback_id,
"Status", status);
nhiroki 2014/10/14 05:01:13 (Not related to this CL, but we are here...) 1.)
shimazu 2014/10/14 09:07:02 I'll create a different patch about this.
return;
}
@@ -803,7 +818,7 @@ void ServiceWorkerStorage::DidFindRegistrationForDocument(
TRACE_EVENT_ASYNC_END1(
"ServiceWorker",
"ServiceWorkerStorage::FindRegistrationForDocument",
- base::Hash(document_url.spec()),
+ callback_id,
"Status", status);
}
« no previous file with comments | « content/browser/service_worker/service_worker_storage.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698