()
| 7869 | } |
| 7870 | |
| 7871 | function startCommitTimer() { |
| 7872 | if (enableUserTimingAPI) { |
| 7873 | if (!supportsUserTiming) { |
| 7874 | return; |
| 7875 | } |
| 7876 | isCommitting = true; |
| 7877 | hasScheduledUpdateInCurrentCommit = false; |
| 7878 | labelsInCurrentCommit.clear(); |
| 7879 | beginMark('(Committing Changes)'); |
| 7880 | } |
| 7881 | } |
| 7882 | |
| 7883 | function stopCommitTimer() { |
| 7884 | if (enableUserTimingAPI) { |
no test coverage detected