Timing logger clean-up
Catching some missing regions in GC, renamed unpause, relacing start/endsplits with scopedsplit.
More to come in further CLs.
Change-Id: I809e0c3af8f8432b22c6205aade5d0dd05ac1b38
diff --git a/runtime/base/timing_logger.h b/runtime/base/timing_logger.h
index 8649a96..777d3f0 100644
--- a/runtime/base/timing_logger.h
+++ b/runtime/base/timing_logger.h
@@ -107,8 +107,8 @@
// Pauses timing of the split, usually due to nesting of another split.
void Pause();
- // Unpauses timing of the split, usually because a nested split has ended.
- void UnPause();
+ // Resumes timing of the split, usually because a nested split has ended.
+ void Resume();
// Used by new split to swap splits in place in a ScopedSplit instance.
void TailInsertSplit(const char* label);