| Index: ui/wm/public/window_types.h
|
| diff --git a/ui/aura/client/window_types.h b/ui/wm/public/window_types.h
|
| similarity index 69%
|
| rename from ui/aura/client/window_types.h
|
| rename to ui/wm/public/window_types.h
|
| index f0a7b777a8f1cf401210c260a281cb5e279e7c08..1b81c121b5ad04e6d7f809e4eb4031dd6fdb8de0 100644
|
| --- a/ui/aura/client/window_types.h
|
| +++ b/ui/wm/public/window_types.h
|
| @@ -2,15 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef UI_AURA_WINDOW_TYPES_H_
|
| -#define UI_AURA_WINDOW_TYPES_H_
|
| +#ifndef UI_WM_PUBLIC_WINDOW_TYPES_H_
|
| +#define UI_WM_PUBLIC_WINDOW_TYPES_H_
|
|
|
| -namespace aura {
|
| -namespace client {
|
| +namespace ui {
|
| +namespace wm {
|
|
|
| // This isn't a property because it can't change after the window has been
|
| -// initialized. It's in client because the Aura Client application derives
|
| -// meaning from these values, not Aura itself.
|
| +// initialized.
|
| enum WindowType {
|
| WINDOW_TYPE_UNKNOWN = 0,
|
|
|
| @@ -27,10 +26,11 @@ enum WindowType {
|
| WINDOW_TYPE_PANEL,
|
|
|
| WINDOW_TYPE_MENU,
|
| +
|
| WINDOW_TYPE_TOOLTIP,
|
| };
|
|
|
| -} // namespace client
|
| -} // namespace aura
|
| +} // namespace wm
|
| +} // namespace ui
|
|
|
| -#endif // UI_AURA_WINDOW_TYPES_H_
|
| +#endif // UI_WM_PUBLIC_WINDOW_TYPES_H_
|
|
|