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

Unified Diff: content/browser/indexed_db/indexed_db_tracing.h

Issue 332553002: Tracing out IndexedDB transaction ID's for chrome://tracing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added parens around macro parameters Created 6 years, 6 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
Index: content/browser/indexed_db/indexed_db_tracing.h
diff --git a/content/browser/indexed_db/indexed_db_tracing.h b/content/browser/indexed_db/indexed_db_tracing.h
index 86ddaa34bfa2c1c8ec2c2b8537370066724762a0..b7a5a4157d30b72d2c9c932fbf600ea577b2ada4 100644
--- a/content/browser/indexed_db/indexed_db_tracing.h
+++ b/content/browser/indexed_db/indexed_db_tracing.h
@@ -7,5 +7,7 @@
#include "base/debug/trace_event.h"
#define IDB_TRACE(a) TRACE_EVENT0("IndexedDB", (a));
+#define IDB_TRACE1(a, arg1_name, arg1_val) \
+ TRACE_EVENT1("IndexedDB", (a), (arg1_name), (arg1_val));
#endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_TRACING_H_
« no previous file with comments | « content/browser/indexed_db/indexed_db_database.cc ('k') | content/browser/indexed_db/indexed_db_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698