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

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

Issue 2488723002: Reland of Improves focus/activation for aura-mus and DesktopNativeWidgetAura (Closed)
Patch Set: Created 4 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
« no previous file with comments | « ui/aura/test/aura_test_helper.cc ('k') | ui/views/mus/desktop_window_tree_host_mus.cc » ('j') | 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.h
diff --git a/ui/views/mus/desktop_window_tree_host_mus.h b/ui/views/mus/desktop_window_tree_host_mus.h
index 9893ed613458b6f24754756e6b0c6395ed8b60cf..9aba79c1e46864114f04b215de5939f04c66c27c 100644
--- a/ui/views/mus/desktop_window_tree_host_mus.h
+++ b/ui/views/mus/desktop_window_tree_host_mus.h
@@ -9,6 +9,7 @@
#include <set>
#include "base/macros.h"
+#include "ui/aura/env_observer.h"
#include "ui/aura/mus/window_tree_host_mus.h"
#include "ui/views/mus/mus_export.h"
#include "ui/views/widget/desktop_aura/desktop_window_tree_host.h"
@@ -17,7 +18,8 @@
class VIEWS_MUS_EXPORT DesktopWindowTreeHostMus
: public DesktopWindowTreeHost,
- public aura::WindowTreeHostMus {
+ public aura::WindowTreeHostMus,
+ public aura::EnvObserver {
public:
DesktopWindowTreeHostMus(
internal::NativeWidgetDelegate* native_widget_delegate,
@@ -88,6 +90,11 @@
bool IsTranslucentWindowOpacitySupported() const override;
void SizeConstraintsChanged() override;
+ // aura::EnvObserver:
+ void OnWindowInitialized(aura::Window* window) override;
+ void OnActiveFocusClientChanged(aura::client::FocusClient* focus_client,
+ aura::Window* window) override;
+
internal::NativeWidgetDelegate* native_widget_delegate_;
DesktopNativeWidgetAura* desktop_native_widget_aura_;
@@ -101,6 +108,8 @@
DesktopWindowTreeHostMus* parent_ = nullptr;
std::set<DesktopWindowTreeHostMus*> children_;
+ bool is_active_ = false;
+
// Used so that Close() isn't immediate.
base::WeakPtrFactory<DesktopWindowTreeHostMus> close_widget_factory_;
« no previous file with comments | « ui/aura/test/aura_test_helper.cc ('k') | ui/views/mus/desktop_window_tree_host_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698