| 3341 | action: "maximize", |
| 3342 | }); |
| 3343 | }, |
| 3344 | unmaximize() { |
| 3345 | entry.pendingActions.push({ |
| 3346 | windowId: latestSnapshot.id, |
| 3347 | action: "unmaximize", |
| 3348 | }); |
| 3349 | }, |
| 3350 | minimize() { |
| 3351 | entry.pendingActions.push({ |
| 3352 | windowId: latestSnapshot.id, |
| 3353 | action: "minimize", |
| 3354 | }); |
| 3355 | }, |
| 3356 | fullscreen() { |
| 3357 | entry.pendingActions.push({ |
| 3358 | windowId: latestSnapshot.id, |
| 3359 | action: "fullscreen", |
| 3360 | }); |
| 3361 | }, |
| 3362 | unfullscreen() { |
| 3363 | entry.pendingActions.push({ |
| 3364 | windowId: latestSnapshot.id, |
| 3365 | action: "unfullscreen", |
| 3366 | }); |
| 3367 | }, |
| 3368 | focus() { |
| 3369 | entry.pendingActions.push({ |
| 3370 | windowId: latestSnapshot.id, |