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

Side by Side Diff: ash/mus/native_widget_factory_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_NATIVE_WIDGET_FACTORY_MUS_H_
6 #define ASH_MUS_NATIVE_WIDGET_FACTORY_MUS_H_
7
8 #include "base/macros.h"
9
10 namespace ash {
11 namespace mus {
12
13 class WindowManager;
14
15 // A native widget factory used for widgets in the ash system UI itself.
16 // For example, this creates context menu widgets for the shelf and wallpaper.
17 class NativeWidgetFactoryMus {
18 public:
19 explicit NativeWidgetFactoryMus(WindowManager* window_manager);
20 ~NativeWidgetFactoryMus();
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(NativeWidgetFactoryMus);
24 };
25
26 } // namespace mus
27 } // namespace ash
28
29 #endif // ASH_MUS_NATIVE_WIDGET_FACTORY_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698