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

Unified Diff: ash/wm/workspace/workspace_event_handler_aura.cc

Issue 2629643002: chromeos: Renames WmWindowAura to WmWindow (Closed)
Patch Set: feedback Created 3 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
Index: ash/wm/workspace/workspace_event_handler_aura.cc
diff --git a/ash/wm/workspace/workspace_event_handler_aura.cc b/ash/wm/workspace/workspace_event_handler_aura.cc
index 5fd42e4616d634d54da6b08e7cb7b4db548fc1c7..495c4bc2eb1915400e716e789aacf1e7973885e9 100644
--- a/ash/wm/workspace/workspace_event_handler_aura.cc
+++ b/ash/wm/workspace/workspace_event_handler_aura.cc
@@ -4,7 +4,7 @@
#include "ash/wm/workspace/workspace_event_handler_aura.h"
-#include "ash/aura/wm_window_aura.h"
+#include "ash/common/wm_window.h"
#include "ui/aura/window.h"
#include "ui/events/event.h"
@@ -21,12 +21,12 @@ WorkspaceEventHandlerAura::~WorkspaceEventHandlerAura() {
void WorkspaceEventHandlerAura::OnMouseEvent(ui::MouseEvent* event) {
WorkspaceEventHandler::OnMouseEvent(
- event, WmWindowAura::Get(static_cast<aura::Window*>(event->target())));
+ event, WmWindow::Get(static_cast<aura::Window*>(event->target())));
}
void WorkspaceEventHandlerAura::OnGestureEvent(ui::GestureEvent* event) {
WorkspaceEventHandler::OnGestureEvent(
- event, WmWindowAura::Get(static_cast<aura::Window*>(event->target())));
+ event, WmWindow::Get(static_cast<aura::Window*>(event->target())));
}
} // namespace ash
« no previous file with comments | « ash/wm/workspace/multi_window_resize_controller_unittest.cc ('k') | ash/wm/workspace/workspace_layout_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698