()
| 7649 | } |
| 7650 | |
| 7651 | function startCommitTimer() { |
| 7652 | if (enableUserTimingAPI) { |
| 7653 | if (!supportsUserTiming) { |
| 7654 | return; |
| 7655 | } |
| 7656 | isCommitting = true; |
| 7657 | hasScheduledUpdateInCurrentCommit = false; |
| 7658 | labelsInCurrentCommit.clear(); |
| 7659 | beginMark('(Committing Changes)'); |
| 7660 | } |
| 7661 | } |
| 7662 | |
| 7663 | function stopCommitTimer() { |
| 7664 | if (enableUserTimingAPI) { |
no test coverage detected