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

Unified Diff: ui/views/widget/desktop_aura/desktop_root_window_host_win.cc

Issue 26427002: Add always-on-top property to app windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge 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: ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
diff --git a/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc b/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
index dd4e2487a1fdcf5b2722e8e81aa43d32c52b6adb..75c49c8c871367009b65f338243c3b8823a51fff 100644
--- a/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
+++ b/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
@@ -307,6 +307,10 @@ void DesktopRootWindowHostWin::SetAlwaysOnTop(bool always_on_top) {
message_handler_->SetAlwaysOnTop(always_on_top);
}
+bool DesktopRootWindowHostWin::IsAlwaysOnTop() const {
+ return message_handler_->IsAlwaysOnTop();
+}
+
void DesktopRootWindowHostWin::SetWindowTitle(const string16& title) {
message_handler_->SetTitle(title);
}

Powered by Google App Engine
This is Rietveld 408576698