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

Unified Diff: chrome/browser/task_manager/sampling/shared_sampler_posix.cc

Issue 2573183002: Add process start time and CPU time columns to task manager (Closed)
Patch Set: Fix nits and conflicts. Created 3 years, 11 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: chrome/browser/task_manager/sampling/shared_sampler_posix.cc
diff --git a/chrome/browser/task_manager/sampling/shared_sampler_posix.cc b/chrome/browser/task_manager/sampling/shared_sampler_posix.cc
index 722bf96a9156b1a370638256f53d178dbc519843..ac62fce92949d2b92d0d20cd29862fe199aa3572 100644
--- a/chrome/browser/task_manager/sampling/shared_sampler_posix.cc
+++ b/chrome/browser/task_manager/sampling/shared_sampler_posix.cc
@@ -18,7 +18,9 @@ int64_t SharedSampler::GetSupportedFlags() const { return 0; }
void SharedSampler::RegisterCallbacks(
base::ProcessId process_id,
const OnIdleWakeupsCallback& on_idle_wakeups,
- const OnPhysicalMemoryCallback& on_physical_memory) {}
+ const OnPhysicalMemoryCallback& on_physical_memory,
+ const OnStartTimeCallback& on_start_time,
+ const OnCpuTimeCallback& on_cpu_time) {}
void SharedSampler::UnregisterCallbacks(base::ProcessId process_id) {}

Powered by Google App Engine
This is Rietveld 408576698