Chromium Code Reviews

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: respond to comments Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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..fbea326b6c799d9229488f9fce6309b18fdb96d5 100644
--- a/content/browser/renderer_host/render_view_host_delegate.h
+++ b/content/browser/renderer_host/render_view_host_delegate.h
@@ -358,6 +358,9 @@ class RenderViewHostDelegate : public IPC::Channel::Listener {
virtual void HandleMouseUp() {}
virtual void HandleMouseActivate() {}
+ // Notification that the page wants to go into or out of fullscreen mode.
+ virtual void ToggleFullscreenMode(bool enter_fullscreen) {}
+
protected:
virtual ~RenderViewHostDelegate() {}
};

Powered by Google App Engine