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

Unified Diff: apps/shell_window.cc

Issue 26427002: Add always-on-top property to app windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cache state of isAlwaysOnTop in widget. Fixed clobber in x11 window init. Created 7 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: apps/shell_window.cc
diff --git a/apps/shell_window.cc b/apps/shell_window.cc
index 99c330c483978d78335250fc995d119ad0e0738c..110153d92c48bf0c8d2a65e607fbfebbf5ddc523 100644
--- a/apps/shell_window.cc
+++ b/apps/shell_window.cc
@@ -65,7 +65,8 @@ ShellWindow::CreateParams::CreateParams()
state(ui::SHOW_STATE_DEFAULT),
hidden(false),
resizable(true),
- focused(true) {}
+ focused(true),
+ always_on_top(false) {}
ShellWindow::CreateParams::~CreateParams() {}

Powered by Google App Engine
This is Rietveld 408576698