(messageObject)
| 60 | } |
| 61 | |
| 62 | function didStopFrontendProfile(messageObject) |
| 63 | { |
| 64 | if (!expectedError("no front-end initiated profiles found", messageObject)) |
| 65 | return; |
| 66 | disallowConsoleProfiles(); |
| 67 | Protocol.Runtime.evaluate({expression: "console.profileEnd();"}).then(didStopConsoleProfile); |
| 68 | } |
| 69 | |
| 70 | function didStopConsoleProfile(messageObject) |
| 71 | { |
nothing calls this directly
no test coverage detected