diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 20:17:01 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 20:17:01 +0000 |
commit | ca9c23002e3e9d6325e6bddae60341f67dd4f460 (patch) | |
tree | d687c041da38970a6872e6b2e0c6543b083f01dd /ash/shell/example_factory.h | |
parent | 240502342713279f648c1b21a889e52d19b91ff1 (diff) | |
download | chromium_src-ca9c23002e3e9d6325e6bddae60341f67dd4f460.zip chromium_src-ca9c23002e3e9d6325e6bddae60341f67dd4f460.tar.gz chromium_src-ca9c23002e3e9d6325e6bddae60341f67dd4f460.tar.bz2 |
Create the new toplevel directory ash, and move the shell examples in it as a seed.
Examples are now known as "shell". (I will rename aura_shell::Shell to something else in a pending CL).
http://crbug.com/108457
TEST=none
TBR=sky
Review URL: http://codereview.chromium.org/9026012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell/example_factory.h')
-rw-r--r-- | ash/shell/example_factory.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ash/shell/example_factory.h b/ash/shell/example_factory.h new file mode 100644 index 0000000..25491ac --- /dev/null +++ b/ash/shell/example_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 ASH_SHELL_EXAMPLE_FACTORY_H_ +#define ASH_SHELL_EXAMPLE_FACTORY_H_ +#pragma once + +namespace views { +class View; +} + +namespace ash { +namespace shell { + +void CreatePointyBubble(views::View* anchor_view); + +void CreateLockScreen(); + +// Creates a window showing samples of commonly used widgets. +void CreateWidgetsWindow(); + +} // namespace shell +} // namespace ash + +#endif // ASH_SHELL_EXAMPLE_FACTORY_H_ |