| Index: chrome/browser/ui/browser_window.h
|
| diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h
|
| index 4dfda90bce8265899cfd1ff1177e41397e97a534..9a600c21cb310750665319de6927a1fe3d0a015d 100644
|
| --- a/chrome/browser/ui/browser_window.h
|
| +++ b/chrome/browser/ui/browser_window.h
|
| @@ -136,7 +136,9 @@ class BrowserWindow {
|
| virtual bool IsMinimized() const = 0;
|
|
|
| // Accessors for fullscreen mode state.
|
| - virtual void SetFullscreen(bool fullscreen) = 0;
|
| + virtual void SetFullscreen(bool fullscreen,
|
| + const GURL& url,
|
| + bool ask_permission) = 0;
|
| virtual bool IsFullscreen() const = 0;
|
|
|
| // Returns true if the fullscreen bubble is visible.
|
| @@ -304,7 +306,9 @@ class BrowserWindow {
|
|
|
| // Sets the presentation mode for the window. If the window is not already in
|
| // fullscreen, also enters fullscreen mode.
|
| - virtual void SetPresentationMode(bool presentation_mode) = 0;
|
| + virtual void SetPresentationMode(bool presentation_mode,
|
| + const GURL& url,
|
| + bool ask_permission) = 0;
|
| virtual bool InPresentationMode() = 0;
|
| #endif
|
|
|
|
|