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

Unified Diff: ui/aura/mus/property_utils.cc

Issue 2908333003: [mus+ash] Removes WmWindow from ash (app_list, frame, metrics, session, system, wallpaper) (Closed)
Patch Set: [mus ash] Removes WmWindow from ash (rebase, nits and cleanup of use of ResizeHandleWindowTargeter) Created 3 years, 7 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 | « components/exo/touch_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/mus/property_utils.cc
diff --git a/ui/aura/mus/property_utils.cc b/ui/aura/mus/property_utils.cc
index 089826e073e44f4f627e555f3e5e06d1a08e8cc5..b9ffba18125caa7c940998101d317d1451663a93 100644
--- a/ui/aura/mus/property_utils.cc
+++ b/ui/aura/mus/property_utils.cc
@@ -12,7 +12,7 @@
namespace aura {
namespace {
-client::WindowType UiWindowTypeToWmWindowType(ui::mojom::WindowType type) {
+client::WindowType UiWindowTypeToWindowType(ui::mojom::WindowType type) {
switch (type) {
case ui::mojom::WindowType::WINDOW:
return client::WINDOW_TYPE_NORMAL;
@@ -40,7 +40,7 @@ client::WindowType UiWindowTypeToWmWindowType(ui::mojom::WindowType type) {
void SetWindowType(Window* window, ui::mojom::WindowType window_type) {
window->SetProperty(client::kWindowTypeKey, window_type);
- window->SetType(UiWindowTypeToWmWindowType(window_type));
+ window->SetType(UiWindowTypeToWindowType(window_type));
}
} // namespace aura
« no previous file with comments | « components/exo/touch_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698