app_list/chromeos: Launch search results in a new tab.
[chromium-blink-merge.git] / ash / shell_factory.h
blob59b20a92354020af8c5b6bb332b3214e62338216
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
3 // found in the LICENSE file.
5 #ifndef ASH_SHELL_FACTORY_H_
6 #define ASH_SHELL_FACTORY_H_
7 #pragma once
9 #include "ash/ash_export.h"
10 #include "ash/desktop_background/desktop_background_resources.h"
12 namespace aura {
13 class RootWindow;
16 namespace gfx {
17 class ImageSkia;
20 namespace ui_controls {
21 class UIControlsAura;
24 namespace views {
25 class View;
26 class Widget;
29 // Declarations of shell component factory functions.
31 namespace ash {
33 namespace internal {
34 void CreateDesktopBackground(const gfx::ImageSkia& wallpaper,
35 WallpaperLayout wallpaper_layout,
36 aura::RootWindow* root_window);
38 ASH_EXPORT views::Widget* CreateStatusArea(views::View* contents);
40 ui_controls::UIControlsAura* CreateUIControls();
41 } // namespace internal
43 } // namespace ash
46 #endif // ASH_SHELL_FACTORY_H_