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

Unified Diff: ui/views/mus/desktop_window_tree_host_mus.cc

Issue 2596723002: mus: Unset the cursor client during teardown. (Closed)
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/desktop_window_tree_host_mus.cc
diff --git a/ui/views/mus/desktop_window_tree_host_mus.cc b/ui/views/mus/desktop_window_tree_host_mus.cc
index c3097bd499666b4fe677a99dc499a001b7568652..cf437bcf95b4ae068ac92fee7bd9a74a16bc8984 100644
--- a/ui/views/mus/desktop_window_tree_host_mus.cc
+++ b/ui/views/mus/desktop_window_tree_host_mus.cc
@@ -193,6 +193,10 @@ DesktopWindowTreeHostMus::~DesktopWindowTreeHostMus() {
MusClient::Get()->RemoveObserver(this);
aura::Env::GetInstance()->RemoveObserver(this);
desktop_native_widget_aura_->OnDesktopWindowTreeHostDestroyed(this);
+ // The cursor-client can be accessed during WindowTreeHostMus tear-down. So
+ // the cursor client needs to be unset on the root-window before
+ // |cursor_manager_| is destroyed.
+ aura::client::SetCursorClient(window(), nullptr);
James Cook 2016/12/21 04:02:31 nit: Should this be done before line 193 so that t
sadrul 2016/12/21 17:45:57 Done.
}
bool DesktopWindowTreeHostMus::IsDocked() const {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698