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

Unified Diff: chrome/browser/ui/panels/panel.cc

Issue 7740044: Implement fullscreen info bubble on Win and Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments Created 9 years, 2 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: chrome/browser/ui/panels/panel.cc
diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc
index 15eaf0d3e9fa5c1cba33f31cd0f6441e74b2e2a8..fe6a5713155333cc14dfc232740692507a45362b 100644
--- a/chrome/browser/ui/panels/panel.cc
+++ b/chrome/browser/ui/panels/panel.cc
@@ -246,7 +246,11 @@ bool Panel::IsMinimized() const {
return expansion_state_ != EXPANDED;
}
-void Panel::SetFullscreen(bool fullscreen) {
+void Panel::EnterFullscreen(const GURL& url, bool ask_permission) {
+ NOTIMPLEMENTED();
+}
+
+void Panel::ExitFullscreen() {
NOTIMPLEMENTED();
}
@@ -460,7 +464,9 @@ void Panel::OpenTabpose() {
NOTIMPLEMENTED();
}
-void Panel::SetPresentationMode(bool presentation_mode) {
+void Panel::SetPresentationMode(bool presentation_mode,
+ const GURL& url,
+ bool ask_permission) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698