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

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

Issue 2514243002: Propagates window type properties during aura-mus window creation (Closed)
Patch Set: merge Created 4 years, 1 month 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 | « ui/aura/mus/property_utils.h ('k') | ui/aura/mus/window_manager_delegate.h » ('j') | 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
new file mode 100644
index 0000000000000000000000000000000000000000..26a7bea6ccafab8ccc27d3fb4c89a42171bb66ce
--- /dev/null
+++ b/ui/aura/mus/property_utils.cc
@@ -0,0 +1,46 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/aura/mus/property_utils.h"
+
+#include "services/ui/public/interfaces/window_manager_constants.mojom.h"
+#include "ui/aura/client/aura_constants.h"
+#include "ui/aura/window.h"
+#include "ui/wm/public/window_types.h"
+
+namespace aura {
+namespace {
+
+ui::wm::WindowType UiWindowTypeToWmWindowType(ui::mojom::WindowType type) {
+ switch (type) {
+ case ui::mojom::WindowType::WINDOW:
+ return ui::wm::WINDOW_TYPE_NORMAL;
+ case ui::mojom::WindowType::PANEL:
+ return ui::wm::WINDOW_TYPE_PANEL;
+ case ui::mojom::WindowType::CONTROL:
+ return ui::wm::WINDOW_TYPE_CONTROL;
+ case ui::mojom::WindowType::WINDOW_FRAMELESS:
+ case ui::mojom::WindowType::POPUP:
+ case ui::mojom::WindowType::BUBBLE:
+ case ui::mojom::WindowType::DRAG:
+ return ui::wm::WINDOW_TYPE_POPUP;
+ case ui::mojom::WindowType::MENU:
+ return ui::wm::WINDOW_TYPE_MENU;
+ case ui::mojom::WindowType::TOOLTIP:
+ return ui::wm::WINDOW_TYPE_TOOLTIP;
+ case ui::mojom::WindowType::UNKNOWN:
+ return ui::wm::WINDOW_TYPE_UNKNOWN;
+ }
+ NOTREACHED();
+ return ui::wm::WINDOW_TYPE_UNKNOWN;
+}
+
+} // namespace
+
+void SetWindowType(Window* window, ui::mojom::WindowType window_type) {
+ window->SetProperty(client::kWindowTypeKey, window_type);
+ window->SetType(UiWindowTypeToWmWindowType(window_type));
+}
+
+} // namespace aura
« no previous file with comments | « ui/aura/mus/property_utils.h ('k') | ui/aura/mus/window_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698