| 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 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_ |
| OLD | NEW |