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

Unified Diff: base/metrics/user_metrics.cc

Issue 2862893002: 📰 Add visibility change triggers for bottom sheet content (Closed)
Patch Set: cleanup, support app switching Created 3 years, 7 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: base/metrics/user_metrics.cc
diff --git a/base/metrics/user_metrics.cc b/base/metrics/user_metrics.cc
index 9fcc9e8a18a5075d4ae6c5382338a664e15bdc8f..d1a40c80bee31c3a1c095e5e330a83a6052187d3 100644
--- a/base/metrics/user_metrics.cc
+++ b/base/metrics/user_metrics.cc
@@ -34,6 +34,8 @@ void RecordComputedAction(const std::string& action) {
return;
}
+ LOG(INFO) << "RecordAction: " << action;
dgn 2017/05/05 13:24:53 will be removed before landing
+
if (!g_task_runner.Get()->BelongsToCurrentThread()) {
g_task_runner.Get()->PostTask(FROM_HERE,
BindOnce(&RecordComputedAction, action));

Powered by Google App Engine
This is Rietveld 408576698