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

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

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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/test/test_screen.h » ('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
deleted file mode 100644
index c7f9f8c642143cfab8c9757e8e80b09bb20a119c..0000000000000000000000000000000000000000
--- a/ui/aura/test/test_focus_client.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// 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/test/test_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698