Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Unified Diff: ui/aura/desktop_ui_controls.h

Issue 11419013: Add desktop vs. ash context to ui_controls Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
+

Powered by Google App Engine
This is Rietveld 408576698