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

Unified Diff: ash/autoclick/autoclick_controller.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/autoclick/autoclick_controller.cc
diff --git a/ash/autoclick/autoclick_controller.cc b/ash/autoclick/autoclick_controller.cc
index 058d2f5609da64795ccdc600d99426a15147c65f..4692f759f8d26aa828817a318b71df091f649032 100644
--- a/ash/autoclick/autoclick_controller.cc
+++ b/ash/autoclick/autoclick_controller.cc
@@ -4,9 +4,9 @@
#include "ash/autoclick/autoclick_controller.h"
+#include "ash/aura/wm_window_aura.h"
#include "ash/common/wm/root_window_finder.h"
#include "ash/shell.h"
-#include "ash/wm/aura/wm_window_aura.h"
#include "base/timer/timer.h"
#include "ui/aura/env.h"
#include "ui/aura/window_tree_host.h"
@@ -180,7 +180,7 @@ void AutoclickControllerImpl::DoAutoclick() {
gfx::Point screen_location =
aura::Env::GetInstance()->last_mouse_location();
aura::Window* root_window =
- wm::WmWindowAura::GetAuraWindow(wm::GetRootWindowAt(screen_location));
+ WmWindowAura::GetAuraWindow(wm::GetRootWindowAt(screen_location));
DCHECK(root_window) << "Root window not found while attempting autoclick.";
gfx::Point click_location(screen_location);

Powered by Google App Engine
This is Rietveld 408576698