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

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

Issue 2438853002: Renames aura::client::WindowTreeClient to WindowParentingClient (Closed)
Patch Set: cleanup Created 4 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/aura_test_helper.h ('k') | ui/aura/test/test_window_parenting_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/test/aura_test_helper.cc
diff --git a/ui/aura/test/aura_test_helper.cc b/ui/aura/test/aura_test_helper.cc
index 9fe46c380b0871acda989563f7e61c5ed59765ab..933cb2f240fb44619c036d6cdc49df5a0f838d06 100644
--- a/ui/aura/test/aura_test_helper.cc
+++ b/ui/aura/test/aura_test_helper.cc
@@ -14,7 +14,7 @@
#include "ui/aura/test/event_generator_delegate_aura.h"
#include "ui/aura/test/test_focus_client.h"
#include "ui/aura/test/test_screen.h"
-#include "ui/aura/test/test_window_tree_client.h"
+#include "ui/aura/test/test_window_parenting_client.h"
#include "ui/aura/window.h"
#include "ui/aura/window_event_dispatcher.h"
#include "ui/base/ime/input_method_factory.h"
@@ -77,7 +77,7 @@ void AuraTestHelper::SetUp(ui::ContextFactory* context_factory) {
focus_client_.reset(new TestFocusClient);
client::SetFocusClient(root_window(), focus_client_.get());
- stacking_client_.reset(new TestWindowTreeClient(root_window()));
+ parenting_client_.reset(new TestWindowParentingClient(root_window()));
capture_client_.reset(new client::DefaultCaptureClient(root_window()));
root_window()->Show();
@@ -87,7 +87,7 @@ void AuraTestHelper::SetUp(ui::ContextFactory* context_factory) {
void AuraTestHelper::TearDown() {
teardown_called_ = true;
- stacking_client_.reset();
+ parenting_client_.reset();
capture_client_.reset();
focus_client_.reset();
client::SetFocusClient(root_window(), nullptr);
« no previous file with comments | « ui/aura/test/aura_test_helper.h ('k') | ui/aura/test/test_window_parenting_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698