| 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 #ifndef ASH_SYSUI_CONTAINER_DELEGATE_MUS_H_ | |
| 6 #define ASH_SYSUI_CONTAINER_DELEGATE_MUS_H_ | |
| 7 | |
| 8 #include "ash/container_delegate.h" | |
| 9 #include "base/macros.h" | |
| 10 | |
| 11 namespace ash { | |
| 12 namespace sysui { | |
| 13 | |
| 14 // The ContainerDelegate for mus ash. | |
| 15 class ContainerDelegateMus : public ContainerDelegate { | |
| 16 public: | |
| 17 ContainerDelegateMus(); | |
| 18 ~ContainerDelegateMus() override; | |
| 19 | |
| 20 // ContainerDelegate: | |
| 21 bool IsInMenuContainer(views::Widget* widget) override; | |
| 22 bool IsInStatusContainer(views::Widget* widget) override; | |
| 23 | |
| 24 private: | |
| 25 DISALLOW_COPY_AND_ASSIGN(ContainerDelegateMus); | |
| 26 }; | |
| 27 | |
| 28 } // namespace sysui | |
| 29 } // namespace ash | |
| 30 | |
| 31 #endif // ASH_SYSUI_CONTAINER_DELEGATE_MUS_H_ | |
| OLD | NEW |