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

Unified Diff: ui/aura/test/test_focus_client.cc

Issue 29883002: Attempt to re-land FocusManager removal from Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable test with note. 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
« no previous file with comments | « ui/aura/test/test_focus_client.h ('k') | ui/aura/window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/test/test_focus_client.cc
diff --git a/ui/aura/test/test_focus_client.cc b/ui/aura/test/test_focus_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c7f9f8c642143cfab8c9757e8e80b09bb20a119c
--- /dev/null
+++ b/ui/aura/test/test_focus_client.cc
@@ -0,0 +1,70 @@
+// Copyright 2013 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.
+
+#include "ui/aura/test/test_focus_client.h"
+
+#include "ui/aura/client/focus_change_observer.h"
+#include "ui/aura/window.h"
+
+namespace aura {
+namespace test {
+
+////////////////////////////////////////////////////////////////////////////////
+// TestFocusClient, public:
+
+TestFocusClient::TestFocusClient()
+ : focused_window_(NULL),
+ observer_manager_(this) {
+}
+
+TestFocusClient::~TestFocusClient() {
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// TestFocusClient, client::FocusClient implementation:
+
+void TestFocusClient::AddObserver(client::FocusChangeObserver* observer) {
+}
+
+void TestFocusClient::RemoveObserver(client::FocusChangeObserver* observer) {
+}
+
+void TestFocusClient::FocusWindow(Window* window) {
+ if (window && !window->CanFocus())
+ return;
+ if (focused_window_)
+ observer_manager_.Remove(focused_window_);
+ aura::Window* old_focused_window = focused_window_;
+ focused_window_ = window;
+ if (focused_window_)
+ observer_manager_.Add(focused_window_);
+
+ client::FocusChangeObserver* observer =
+ client::GetFocusChangeObserver(old_focused_window);
+ if (observer)
+ observer->OnWindowFocused(focused_window_, old_focused_window);
+ observer = client::GetFocusChangeObserver(focused_window_);
+ if (observer)
+ observer->OnWindowFocused(focused_window_, old_focused_window);
+}
+
+void TestFocusClient::ResetFocusWithinActiveWindow(Window* window) {
+ if (!window->Contains(focused_window_))
+ FocusWindow(window);
+}
+
+Window* TestFocusClient::GetFocusedWindow() {
+ return focused_window_;
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// TestFocusClient, WindowObserver implementation:
+
+void TestFocusClient::OnWindowDestroying(Window* window) {
+ DCHECK_EQ(window, focused_window_);
+ FocusWindow(NULL);
+}
+
+} // namespace test
+} // namespace aura
« no previous file with comments | « ui/aura/test/test_focus_client.h ('k') | ui/aura/window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698