Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1748)

Side by Side Diff: ash/mus/screen_mus.h

Issue 2539363005: Converts ash to use aura-mus (Closed)
Patch Set: merge Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698