Since when does chrome support window.performance.clearResourceTimings and what is the alternative if it is not available? I can't find any details in the release notes or MDN. There is a clearMarks function but it does not reset the list of items.
According to this bug report, performance.clearResourceTimings
and performance.setResourceTimingBufferSize
are prefixed in Chrome since v.30.0.1549.0
You should then call performance.webkitClearResourceTimings
until this bug is fixed.