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

Unified Diff: ui/aura/mus/focus_synchronizer_observer.h

Issue 2714763002: Change FocusSynchronizer to maintain active focus client and window. (Closed)
Patch Set: fix crash in aura_test_helper tear down Created 3 years, 9 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/aura/mus/focus_synchronizer_observer.h
diff --git a/ui/aura/mus/focus_synchronizer_observer.h b/ui/aura/mus/focus_synchronizer_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..5b5c036e6a4076d64a15c1aafab09b3f71d59bce
--- /dev/null
+++ b/ui/aura/mus/focus_synchronizer_observer.h
@@ -0,0 +1,30 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_AURA_MUS_FOCUS_SYNCHRONIZER_OBSERVER_H_
+#define UI_AURA_MUS_FOCUS_SYNCHRONIZER_OBSERVER_H_
+
+#include "ui/aura/aura_export.h"
+
+namespace aura {
+class Window;
+
+namespace client {
+class FocusClient;
+}
+
+class AURA_EXPORT FocusSynchronizerObserver {
+ public:
+ // Called from FocusSynchronizer::OnActiveFocusClientChanged() to notify its
+ // observers of active focus client and focus window changes.
+ virtual void OnActiveFocusClientChanged(client::FocusClient* focus_client,
+ Window* window) {}
+
+ protected:
+ virtual ~FocusSynchronizerObserver() {}
+};
+
+} // namespace aura
+
+#endif // UI_AURA_MUS_FOCUS_SYNCHRONIZER_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698