summaryrefslogtreecommitdiffstats
path: root/ui/aura/ui_controls_aura.h
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-16 09:30:33 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-16 09:30:33 +0000
commit536f8082c8e8b492086e7f675bdb477005f770cb (patch)
tree5b22096c355bf4e8327bde51b7dcde0de2e5617b /ui/aura/ui_controls_aura.h
parent644a10733be94786e8169d035d7f527b105ee529 (diff)
downloadchromium_src-536f8082c8e8b492086e7f675bdb477005f770cb.zip
chromium_src-536f8082c8e8b492086e7f675bdb477005f770cb.tar.gz
chromium_src-536f8082c8e8b492086e7f675bdb477005f770cb.tar.bz2
Original CL (http://codereview.chromium.org/9390038/) somehow got screwed and CQ couldn't patch it. This is exact copy of the original CL to land.
* Move automation/ui_controls to ui/ui_controls * Refactored aura impl so that ui/ui_controls doesn't depend on aura. * Moved MoveMouseToCenterAndPress to ui_test_util.h as it depends on views and can't be declared in ui. * a couple of cleanups: - Renamed gtk_screen_utils.h to _util.h to match other util.h files. - indent fix - remove unnecessary includes. This CL allows a test to use ui_controls without depending on chrome. TBR=sky@chromium.org,erg@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/9699098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127138 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/ui_controls_aura.h')
-rw-r--r--ui/aura/ui_controls_aura.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/aura/ui_controls_aura.h b/ui/aura/ui_controls_aura.h
new file mode 100644
index 0000000..b169cec
--- /dev/null
+++ b/ui/aura/ui_controls_aura.h
@@ -0,0 +1,23 @@
+// 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_UI_CONTROLS_AURA_H_
+#define UI_AURA_UI_CONTROLS_AURA_H_
+#pragma once
+
+#include "ui/aura/aura_export.h"
+
+namespace ui_controls {
+class UIControlsAura;
+}
+
+namespace aura {
+class RootWindow;
+
+AURA_EXPORT ui_controls::UIControlsAura* CreateUIControlsAura(
+ RootWindow* root_window);
+
+} // namespace aura
+
+#endif // UI_AURA_UI_CONTROLS_AURA_H_