Refactoring - changing TODO labels
Transfering TODOs in code from tneda to taylori.
Change-Id: Ie55aeebedbdc6394569224074445f253d5dbad05
diff --git a/ui/src/controller/heap_profile_controller.ts b/ui/src/controller/heap_profile_controller.ts
index 4a5d262..f3f23b5 100644
--- a/ui/src/controller/heap_profile_controller.ts
+++ b/ui/src/controller/heap_profile_controller.ts
@@ -82,8 +82,6 @@
const key = `${selectedUpid};${selectedTs}`;
- // TODO(tneda): Prevent lots of flamegraph queries being queued if a
- // user clicks lots of the markers quickly.
this.getFlamegraphData(
key, lastSelectedViewingOption, selection.ts, selectedUpid)
.then(flamegraphData => {
@@ -123,7 +121,7 @@
if (this.flamegraphDatasets.has(key)) {
currentData = this.flamegraphDatasets.get(key)!;
} else {
- // TODO(tneda): Show loading state.
+ // TODO(taylori): Show loading state.
// Collecting data for drawing flamegraph for selected heap profile.
// Data needs to be in following format:
@@ -203,7 +201,7 @@
this.tableName(`grouped_callsites_for_flamegraph`);
// Joining the callsite table with frame table then with alloc table to get
// the size and name for each callsite.
- // TODO(tneda): Make frame name nullable in the trace processor for
+ // TODO(taylori): Make frame name nullable in the trace processor for
// consistency with the other columns.
await this.args.engine.query(
`create view if not exists ${tableNameCallsiteNameSize} as