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

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: mac 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..cd9bd62df9e2253aaa62f184149cd64222763a4d
--- /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/views/views_export.h"
oshima 2012/11/15 23:37:41 I'm not familiar with aura desktop structure, but
scottmg 2012/11/16 17:58:54 Oops, thanks. Done.
+
+namespace ui_controls {
+class UIControls;
+}
+
+namespace aura {
+
+class RootWindow;
+
+// Creates a UIControls that handle desktop aura events. Caller owns the result.
+VIEWS_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