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

Unified Diff: ui/views/corewm/transient_window_stacking_client.cc

Issue 105813013: Adds views::corewm::WMState to install common state (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix viewseventtestbase Created 7 years 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
« no previous file with comments | « ui/views/corewm/transient_window_stacking_client.h ('k') | ui/views/corewm/wm_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/corewm/transient_window_stacking_client.cc
diff --git a/ui/views/corewm/transient_window_stacking_client.cc b/ui/views/corewm/transient_window_stacking_client.cc
index 6a4f8ab25cb687344e91a59812c0ea1a18c1bc6c..e3373ffacf0d6462ce8406d68175748594cc78c3 100644
--- a/ui/views/corewm/transient_window_stacking_client.cc
+++ b/ui/views/corewm/transient_window_stacking_client.cc
@@ -68,7 +68,7 @@ TransientWindowStackingClient::TransientWindowStackingClient() {
TransientWindowStackingClient::~TransientWindowStackingClient() {
}
-void TransientWindowStackingClient::AdjustStacking(
+bool TransientWindowStackingClient::AdjustStacking(
Window** child,
Window** target,
Window::StackDirection* direction) {
@@ -89,6 +89,7 @@ void TransientWindowStackingClient::AdjustStacking(
}
*target = siblings[target_i];
}
+ return true;
}
} // namespace corewm
« no previous file with comments | « ui/views/corewm/transient_window_stacking_client.h ('k') | ui/views/corewm/wm_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698