Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(754)

Unified Diff: content/browser/renderer_host/render_view_host_delegate.h

Issue 7461059: Fullscreen JS API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make ctrl-tab exit JS fullscreen mode Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_view_host_delegate.h
diff --git a/content/browser/renderer_host/render_view_host_delegate.h b/content/browser/renderer_host/render_view_host_delegate.h
index 8239ba31a0c7408679fdf428910a95392662a756..057157adabbb299169dd81309504ee9725a81650 100644
--- a/content/browser/renderer_host/render_view_host_delegate.h
+++ b/content/browser/renderer_host/render_view_host_delegate.h
@@ -358,6 +358,12 @@ class RenderViewHostDelegate : public IPC::Channel::Listener {
virtual void HandleMouseUp() {}
virtual void HandleMouseActivate() {}
+ // Puts the browser into fullscreen mode, focussing on this tab.
Peter Kasting 2011/08/11 17:53:38 Nit: Talking about browsers and tabs here seems li
koz (OOO until 15th September) 2011/08/15 05:50:27 I took the name and changed the wording on the com
+ virtual void EnterFullscreenModeForCurrentTab() {}
+
+ // Makes the browser exit fullscreen mode.
+ virtual void ExitFullscreenMode() {}
+
protected:
virtual ~RenderViewHostDelegate() {}
};

Powered by Google App Engine
This is Rietveld 408576698