| Index: ash/mus/window_manager.cc
|
| diff --git a/ash/mus/window_manager.cc b/ash/mus/window_manager.cc
|
| index 5602244c38c18e0e2377959bb10d2e5ff42b8c0d..e80e7c883f8197fd686aaee9d9a35d37203032df 100644
|
| --- a/ash/mus/window_manager.cc
|
| +++ b/ash/mus/window_manager.cc
|
| @@ -320,13 +320,6 @@ bool WindowManager::OnWmSetProperty(
|
| aura::Window* window,
|
| const std::string& name,
|
| std::unique_ptr<std::vector<uint8_t>>* new_data) {
|
| - // TODO(sky): constrain this to set of keys we know about, and allowed values.
|
| - if (name == ui::mojom::WindowManager::kWindowIgnoredByShelf_Property) {
|
| - wm::WindowState* window_state = WmWindow::Get(window)->GetWindowState();
|
| - window_state->set_ignored_by_shelf(
|
| - new_data ? mojo::ConvertTo<bool>(**new_data) : false);
|
| - return false; // Won't attempt to map through property converter.
|
| - }
|
| if (property_converter_->IsTransportNameRegistered(name))
|
| return true;
|
| DVLOG(1) << "unknown property changed, ignoring " << name;
|
|
|