| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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/wm/workspace/backdrop_delegate.h" | |
| 6 | |
| 7 #include "ash/ash_export.h" | |
| 8 #include "base/macros.h" | |
| 9 | |
| 10 namespace ash { | |
| 11 | |
| 12 // A backdrop delegate for MaximizedMode, which always creates a backdrop. | |
| 13 // This is also used in the WorkspaceLayoutManagerBackdropTest, hence | |
| 14 // is public. | |
| 15 class ASH_EXPORT MaximizeModeBackdropDelegateImpl : public BackdropDelegate { | |
| 16 public: | |
| 17 MaximizeModeBackdropDelegateImpl(); | |
| 18 ~MaximizeModeBackdropDelegateImpl() override; | |
| 19 | |
| 20 protected: | |
| 21 bool HasBackdrop(aura::Window* window) override; | |
| 22 | |
| 23 private: | |
| 24 DISALLOW_COPY_AND_ASSIGN(MaximizeModeBackdropDelegateImpl); | |
| 25 }; | |
| 26 | |
| 27 } // namespace ash | |
| OLD | NEW |