| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_SHELL_FACTORY_H_ | 5 #ifndef ASH_SHELL_FACTORY_H_ |
| 6 #define ASH_SHELL_FACTORY_H_ | 6 #define ASH_SHELL_FACTORY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "ash/ash_export.h" | 9 #include "ash/ash_export.h" |
| 10 #include "ash/desktop_background/desktop_background_resources.h" | 10 #include "ash/desktop_background/desktop_background_resources.h" |
| 11 | 11 |
| 12 namespace aura { | 12 namespace aura { |
| 13 class RootWindow; | 13 class RootWindow; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace gfx { | 16 namespace gfx { |
| 17 class ImageSkia; | 17 class ImageSkia; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace ui_controls { |
| 21 class UIControlsAura; |
| 22 } |
| 23 |
| 20 namespace views { | 24 namespace views { |
| 21 class View; | 25 class View; |
| 22 class Widget; | 26 class Widget; |
| 23 } | 27 } |
| 24 | 28 |
| 25 // Declarations of shell component factory functions. | 29 // Declarations of shell component factory functions. |
| 26 | 30 |
| 27 namespace ash { | 31 namespace ash { |
| 28 | 32 |
| 29 namespace internal { | 33 namespace internal { |
| 30 void CreateDesktopBackground(const gfx::ImageSkia& wallpaper, | 34 void CreateDesktopBackground(const gfx::ImageSkia& wallpaper, |
| 31 WallpaperLayout wallpaper_layout, | 35 WallpaperLayout wallpaper_layout, |
| 32 aura::RootWindow* root_window); | 36 aura::RootWindow* root_window); |
| 37 |
| 33 ASH_EXPORT views::Widget* CreateStatusArea(views::View* contents); | 38 ASH_EXPORT views::Widget* CreateStatusArea(views::View* contents); |
| 39 |
| 40 ui_controls::UIControlsAura* CreateUIControls(); |
| 34 } // namespace internal | 41 } // namespace internal |
| 35 | 42 |
| 36 } // namespace ash | 43 } // namespace ash |
| 37 | 44 |
| 38 | 45 |
| 39 #endif // ASH_SHELL_FACTORY_H_ | 46 #endif // ASH_SHELL_FACTORY_H_ |
| OLD | NEW |