Index: chrome/browser/ui/browser_window.h |
diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h |
index 48844a92b065affb62115370940953871ed9ac00..bc0f55fb8a01e50ebf0a6f927f2874a6eb59db15 100644 |
--- a/chrome/browser/ui/browser_window.h |
+++ b/chrome/browser/ui/browser_window.h |
@@ -136,7 +136,8 @@ class BrowserWindow { |
virtual bool IsMinimized() const = 0; |
// Accessors for fullscreen mode state. |
- virtual void SetFullscreen(bool fullscreen) = 0; |
+ virtual void EnterFullscreen(const GURL& url, bool ask_permission) = 0; |
+ virtual void ExitFullscreen() = 0; |
virtual bool IsFullscreen() const = 0; |
// Returns true if the fullscreen bubble is visible. |
@@ -303,7 +304,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 |