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

Unified Diff: ash/wm/window_animations.cc

Issue 2629643002: chromeos: Renames WmWindowAura to WmWindow (Closed)
Patch Set: unnecessary casts 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/window_animations.cc
diff --git a/ash/wm/window_animations.cc b/ash/wm/window_animations.cc
index 1dbff6cfb09caf0e734a028e4acef7bc1d17d4dc..3eaf6eb27d53d91dcdb41886a3a3f3d07889a79e 100644
--- a/ash/wm/window_animations.cc
+++ b/ash/wm/window_animations.cc
@@ -9,10 +9,10 @@
#include <utility>
#include <vector>
-#include "ash/aura/wm_window_aura.h"
#include "ash/common/shelf/wm_shelf.h"
#include "ash/common/wm/window_animation_types.h"
#include "ash/common/wm/workspace_controller.h"
+#include "ash/common/wm_window.h"
#include "ash/screen_util.h"
#include "ash/wm/window_util.h"
#include "base/i18n/rtl.h"
@@ -413,7 +413,7 @@ CreateBrightnessGrayscaleAnimationSequence(float target_value,
}
gfx::Rect GetMinimizeAnimationTargetBoundsInScreen(aura::Window* window) {
- WmWindow* wm_window = WmWindowAura::Get(window);
+ WmWindow* wm_window = WmWindow::Get(window);
WmShelf* shelf = WmShelf::ForWindow(wm_window);
gfx::Rect item_rect = shelf->GetScreenBoundsOfItemIconForWindow(wm_window);

Powered by Google App Engine
This is Rietveld 408576698