()
| 7106 | } |
| 7107 | |
| 7108 | function startCommitTimer() { |
| 7109 | if (enableUserTimingAPI) { |
| 7110 | if (!supportsUserTiming) { |
| 7111 | return; |
| 7112 | } |
| 7113 | isCommitting = true; |
| 7114 | hasScheduledUpdateInCurrentCommit = false; |
| 7115 | labelsInCurrentCommit.clear(); |
| 7116 | beginMark('(Committing Changes)'); |
| 7117 | } |
| 7118 | } |
| 7119 | |
| 7120 | function stopCommitTimer() { |
| 7121 | if (enableUserTimingAPI) { |
no test coverage detected