()
| 7137 | } |
| 7138 | |
| 7139 | function startCommitTimer() { |
| 7140 | if (enableUserTimingAPI) { |
| 7141 | if (!supportsUserTiming) { |
| 7142 | return; |
| 7143 | } |
| 7144 | isCommitting = true; |
| 7145 | hasScheduledUpdateInCurrentCommit = false; |
| 7146 | labelsInCurrentCommit.clear(); |
| 7147 | beginMark('(Committing Changes)'); |
| 7148 | } |
| 7149 | } |
| 7150 | |
| 7151 | function stopCommitTimer() { |
| 7152 | if (enableUserTimingAPI) { |
no test coverage detected