| 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_MUS_SCREEN_MUS_H_ |
| 6 #define ASH_MUS_SCREEN_MUS_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "ui/display/screen_base.h" |
| 10 |
| 11 namespace ash { |
| 12 |
| 13 // Implementation of Screen for mus. |
| 14 class ScreenMus : public display::ScreenBase { |
| 15 public: |
| 16 ScreenMus(); |
| 17 ~ScreenMus() override; |
| 18 |
| 19 private: |
| 20 // display::ScreenBase: |
| 21 display::Display GetDisplayNearestWindow(aura::Window* window) const override; |
| 22 |
| 23 DISALLOW_COPY_AND_ASSIGN(ScreenMus); |
| 24 }; |
| 25 |
| 26 } // namespace ash |
| 27 |
| 28 #endif // ASH_MUS_SCREEN_MUS_H_ |
| OLD | NEW |