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

Unified Diff: ash/wm/always_on_top_controller_unittest.cc

Issue 2035543004: Shuffles and renames ash/common/wm classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: random changes for chrome tests Created 4 years, 6 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: ash/wm/always_on_top_controller_unittest.cc
diff --git a/ash/wm/always_on_top_controller_unittest.cc b/ash/wm/always_on_top_controller_unittest.cc
index f74b9684f003fdf76bdc8a0ad98e25722d38ef42..386f36a907a650a7a908dda78fba4ef48fe322ef 100644
--- a/ash/wm/always_on_top_controller_unittest.cc
+++ b/ash/wm/always_on_top_controller_unittest.cc
@@ -4,13 +4,13 @@
#include "ash/common/wm/always_on_top_controller.h"
+#include "ash/aura/wm_window_aura.h"
#include "ash/common/shell_window_ids.h"
#include "ash/common/wm/workspace/workspace_layout_manager.h"
#include "ash/common/wm/workspace/workspace_layout_manager_delegate.h"
#include "ash/root_window_controller.h"
#include "ash/shell.h"
#include "ash/test/ash_test_base.h"
-#include "ash/wm/aura/wm_window_aura.h"
#include "base/command_line.h"
#include "base/memory/ptr_util.h"
#include "ui/keyboard/keyboard_controller.h"
@@ -38,7 +38,7 @@ class VirtualKeyboardAlwaysOnTopControllerTest : public AshTestBase {
class TestLayoutManager : public WorkspaceLayoutManager {
public:
- explicit TestLayoutManager(wm::WmWindow* window)
+ explicit TestLayoutManager(WmWindow* window)
: WorkspaceLayoutManager(window, nullptr),
keyboard_bounds_changed_(false) {}
@@ -66,7 +66,7 @@ TEST_F(VirtualKeyboardAlwaysOnTopControllerTest, NotifyKeyboardBoundsChanged) {
Shell::GetContainer(root_window, kShellWindowId_AlwaysOnTopContainer);
// Install test layout manager.
TestLayoutManager* manager =
- new TestLayoutManager(wm::WmWindowAura::Get(always_on_top_container));
+ new TestLayoutManager(WmWindowAura::Get(always_on_top_container));
RootWindowController* controller = Shell::GetPrimaryRootWindowController();
AlwaysOnTopController* always_on_top_controller =
controller->always_on_top_controller();

Powered by Google App Engine
This is Rietveld 408576698