| Index: ui/aura/desktop_ui_controls.h
|
| diff --git a/ui/aura/desktop_ui_controls.h b/ui/aura/desktop_ui_controls.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ac70b52142eb9641696a6b6f46e11a22d502868d
|
| --- /dev/null
|
| +++ b/ui/aura/desktop_ui_controls.h
|
| @@ -0,0 +1,25 @@
|
| +// Copyright (c) 2012 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_DESKTOP_UI_CONTROLS_H_
|
| +#define UI_AURA_DESKTOP_UI_CONTROLS_H_
|
| +
|
| +#include "ui/aura/aura_export.h"
|
| +
|
| +namespace ui_controls {
|
| +class UIControls;
|
| +}
|
| +
|
| +namespace aura {
|
| +
|
| +class RootWindow;
|
| +
|
| +// Creates a UIControls that handle desktop aura events. Caller owns the result.
|
| +AURA_EXPORT ui_controls::UIControls* CreateDesktopUIControls(
|
| + RootWindow* window);
|
| +
|
| +} // namespace aura
|
| +
|
| +#endif // UI_AURA_DESKTOP_UI_CONTROLS_H_
|
| +
|
|
|