| Index: chrome/browser/ui/cocoa/applescript/examples/window_operations.applescript
|
| diff --git a/chrome/browser/ui/cocoa/applescript/examples/window_operations.applescript b/chrome/browser/ui/cocoa/applescript/examples/window_operations.applescript
|
| index 90a028826f12d735e765dd79de63c20a64410fb0..2e86a3f8918dc6fd8e4a679caff4b00c48b8adb5 100644
|
| --- a/chrome/browser/ui/cocoa/applescript/examples/window_operations.applescript
|
| +++ b/chrome/browser/ui/cocoa/applescript/examples/window_operations.applescript
|
| @@ -18,5 +18,12 @@ tell application "Chromium"
|
| -- Open multiple tabs.
|
| set active tab index of window 1 to 2 -- Selects the second tab.
|
|
|
| + -- Enter/exit presentation mode
|
| + if window 1 is not presenting
|
| + tell window 1 to enter presentation mode
|
| + end if
|
| + if window 1 is presenting
|
| + tell window 1 to exit presentation mode
|
| + end if
|
|
|
| end tell
|
|
|