(win)
| 29 | * @param {!Window} win |
| 30 | */ |
| 31 | export function manageWin(win) { |
| 32 | try { |
| 33 | manageWin_(win); |
| 34 | } catch (e) { |
| 35 | // We use a try block, because the ad integrations often swallow errors. |
| 36 | console./*OK*/ error(e.message, e.stack); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * @param {!Window} win |
no test coverage detected