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

Unified Diff: ash/wm/window_state_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
« no previous file with comments | « ash/wm/window_mirror_view.cc ('k') | ash/wm/window_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_state_aura.cc
diff --git a/ash/wm/window_state_aura.cc b/ash/wm/window_state_aura.cc
index a226d93855323a1a8c1c33fe02687884fe31ded7..c2ae3d6ab89ce88a69f43c21eab42a97ded17793 100644
--- a/ash/wm/window_state_aura.cc
+++ b/ash/wm/window_state_aura.cc
@@ -4,8 +4,8 @@
#include "ash/wm/window_state_aura.h"
-#include "ash/aura/wm_window_aura.h"
#include "ash/common/wm/window_state.h"
+#include "ash/common/wm_window.h"
#include "ash/wm/window_properties.h"
#include "ash/wm/window_util.h"
#include "ui/aura/window.h"
@@ -38,7 +38,7 @@ WindowState* GetWindowState(aura::Window* window) {
return nullptr;
WindowState* settings = window->GetProperty(kWindowStateKey);
if (!settings) {
- settings = new WindowStateAura(WmWindowAura::Get(window));
+ settings = new WindowStateAura(WmWindow::Get(window));
window->SetProperty(kWindowStateKey, settings);
}
return settings;
« no previous file with comments | « ash/wm/window_mirror_view.cc ('k') | ash/wm/window_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698