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

Unified Diff: ash/high_contrast/high_contrast_controller.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/high_contrast/high_contrast_controller.cc
diff --git a/ash/high_contrast/high_contrast_controller.cc b/ash/high_contrast/high_contrast_controller.cc
index ce76eaa8959d1ce8bcda0e9918e9d038bfa651c9..38c0ee7ef7e1abf3fe8ef7e7d071e3f834692615 100644
--- a/ash/high_contrast/high_contrast_controller.cc
+++ b/ash/high_contrast/high_contrast_controller.cc
@@ -4,8 +4,8 @@
#include "ash/high_contrast/high_contrast_controller.h"
-#include "ash/aura/wm_window_aura.h"
#include "ash/common/wm_shell.h"
+#include "ash/common/wm_window.h"
#include "ash/shell.h"
#include "ui/aura/window_event_dispatcher.h"
#include "ui/compositor/layer.h"
@@ -36,7 +36,7 @@ void HighContrastController::UpdateDisplay(aura::Window* root_window) {
}
void HighContrastController::OnRootWindowAdded(WmWindow* root_window) {
- UpdateDisplay(WmWindowAura::GetAuraWindow(root_window));
+ UpdateDisplay(WmWindow::GetAuraWindow(root_window));
}
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698