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

Unified Diff: ui/views/mus/native_widget_mus.cc

Issue 1953183002: Support the ignored_by_shelf flag for Mus windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix deps and limit mus to MOJO_SHELL_CLIENT. Created 4 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 | « mash/wm/user_window_controller_impl.cc ('k') | ui/views/widget/widget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/native_widget_mus.cc
diff --git a/ui/views/mus/native_widget_mus.cc b/ui/views/mus/native_widget_mus.cc
index 7bcc4ac7a17206250df694f2adab5f9ba3fdd336..3f2e687781d3d6b8b84772df1b3a4def20fc69e8 100644
--- a/ui/views/mus/native_widget_mus.cc
+++ b/ui/views/mus/native_widget_mus.cc
@@ -435,6 +435,8 @@ void NativeWidgetMus::UpdateClientArea() {
void NativeWidgetMus::ConfigurePropertiesForNewWindow(
const Widget::InitParams& init_params,
std::map<std::string, std::vector<uint8_t>>* properties) {
+ properties->insert(init_params.mus_properties.begin(),
+ init_params.mus_properties.end());
if (!init_params.bounds.IsEmpty()) {
(*properties)[mus::mojom::WindowManager::kUserSetBounds_Property] =
mojo::ConvertTo<std::vector<uint8_t>>(init_params.bounds);
« no previous file with comments | « mash/wm/user_window_controller_impl.cc ('k') | ui/views/widget/widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698