| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ash/mus/bridge/wm_shelf_mus.h" | |
| 6 | |
| 7 #include "ash/common/shelf/shelf_widget.h" | |
| 8 #include "ash/common/wm_root_window_controller.h" | |
| 9 #include "ash/common/wm_shell.h" | |
| 10 #include "ash/common/wm_window.h" | |
| 11 | |
| 12 namespace ash { | |
| 13 namespace mus { | |
| 14 | |
| 15 WmShelfMus::WmShelfMus() {} | |
| 16 | |
| 17 WmShelfMus::~WmShelfMus() {} | |
| 18 | |
| 19 void WmShelfMus::WillDeleteShelfLayoutManager() { | |
| 20 ShutdownShelfWidget(); | |
| 21 WmShelf::WillDeleteShelfLayoutManager(); | |
| 22 } | |
| 23 | |
| 24 } // namespace mus | |
| 25 } // namespace ash | |
| OLD | NEW |