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_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 creatse context menu widgets for the shelf and wallpaper. | |
|
sky
2016/08/25 00:00:32
creatse -> creates
msw
2016/08/25 00:25:14
Done.
| |
| 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_ | |
| OLD | NEW |