Chromium Code Reviews| 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 class ScreenMus : public display::ScreenBase { | |
|
James Cook
2016/12/05 19:21:45
nit: class comment please
sky
2016/12/05 21:39:20
Done.
James Cook
2016/12/05 22:56:34
Not to bikeshed on docs, but the comment would be
sky
2016/12/06 00:56:16
Done.
| |
| 14 public: | |
| 15 explicit ScreenMus(); | |
|
James Cook
2016/12/05 19:21:45
nit: no explicit
sky
2016/12/05 21:39:20
Done.
| |
| 16 ~ScreenMus() override; | |
| 17 | |
| 18 private: | |
| 19 // display::ScreenBase: | |
| 20 display::Display GetDisplayNearestWindow(aura::Window* window) const override; | |
| 21 | |
| 22 DISALLOW_COPY_AND_ASSIGN(ScreenMus); | |
| 23 }; | |
| 24 | |
| 25 } // namespace ash | |
| 26 | |
| 27 #endif // ASH_MUS_SCREEN_MUS_H_ | |
| OLD | NEW |