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

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

Issue 8686012: Make panels not show on top when there is an app running in full screen mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 5bcab6c969788442fbc6d0a98affc2d27d6fea95..019befd1e1a0261f2c94c7dafd14416d8cd116d6 100644
--- a/chrome/browser/ui/panels/panel.cc
+++ b/chrome/browser/ui/panels/panel.cc
@@ -174,6 +174,10 @@ bool Panel::IsDrawingAttention() const {
return native_panel_->IsDrawingAttention();
}
+void Panel::FullScreenModeChanged(bool is_full_screen_mode_on) {
+ native_panel_->FullScreenModeChanged(is_full_screen_mode_on);
+}
+
void Panel::Show() {
native_panel_->ShowPanel();
}

Powered by Google App Engine
This is Rietveld 408576698