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