diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-16 16:37:30 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-16 16:37:30 +0000 |
commit | 8dd791d08b42a61976626b5a8e2a58a4e66efea2 (patch) | |
tree | e32f42b471f186d7b673c2ec2183a413e50656e9 /ui/aura_shell/shell_factory.h | |
parent | 527316365ae362d83de28af7c509757b503e38af (diff) | |
download | chromium_src-8dd791d08b42a61976626b5a8e2a58a4e66efea2.zip chromium_src-8dd791d08b42a61976626b5a8e2a58a4e66efea2.tar.gz chromium_src-8dd791d08b42a61976626b5a8e2a58a4e66efea2.tar.bz2 |
Adds some features to the shell:
- desktop background
- stub launcher
- clicking the background opens test windows
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7903018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura_shell/shell_factory.h')
-rw-r--r-- | ui/aura_shell/shell_factory.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ui/aura_shell/shell_factory.h b/ui/aura_shell/shell_factory.h new file mode 100644 index 0000000..939a260 --- /dev/null +++ b/ui/aura_shell/shell_factory.h @@ -0,0 +1,26 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef UI_AURA_SHELL_SHELL_FACTORY_H_ +#define UI_AURA_SHELL_SHELL_FACTORY_H_ +#pragma once + +namespace views { +class Widget; +} + +namespace aura_shell { +namespace internal { + +// Declarations of shell component factory functions. + +views::Widget* CreateDesktopBackground(); + +views::Widget* CreateLauncher(); + +} // namespace internal +} // namespace aura_shell + + +#endif // UI_AURA_SHELL_SHELL_FACTORY_H_ |