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

Unified Diff: ui/ui_controls/ui_controls_internal_win.h

Issue 11878013: Make ui_controls only usable from interactive_ui_tests. This has two benefits: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 months 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
« no previous file with comments | « ui/ui_controls/ui_controls_aura.h ('k') | ui/views/widget/desktop_aura/desktop_root_window_host_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ui_controls/ui_controls_internal_win.h
===================================================================
--- ui/ui_controls/ui_controls_internal_win.h (revision 176470)
+++ ui/ui_controls/ui_controls_internal_win.h (working copy)
@@ -7,7 +7,6 @@
#include "base/callback_forward.h"
#include "ui/ui_controls/ui_controls.h"
-#include "ui/base/ui_export.h"
namespace ui_controls {
namespace internal {
@@ -15,17 +14,17 @@
// A utility functions for windows to send key or mouse events and
// run the task. These functions are internal, but exported so that
// aura implementation can use these utility functions.
-UI_EXPORT bool SendKeyPressImpl(HWND hwnd,
- ui::KeyboardCode key,
- bool control,
- bool shift,
- bool alt,
- const base::Closure& task);
-UI_EXPORT bool SendMouseMoveImpl(long x, long y, const base::Closure& task);
-UI_EXPORT bool SendMouseEventsImpl(MouseButton type,
- int state,
- const base::Closure& task);
-UI_EXPORT void RunClosureAfterAllPendingUITasksImpl(const base::Closure& task);
+bool SendKeyPressImpl(HWND hwnd,
+ ui::KeyboardCode key,
+ bool control,
+ bool shift,
+ bool alt,
+ const base::Closure& task);
+bool SendMouseMoveImpl(long x, long y, const base::Closure& task);
+bool SendMouseEventsImpl(MouseButton type,
+ int state,
+ const base::Closure& task);
+void RunClosureAfterAllPendingUITasksImpl(const base::Closure& task);
} // namespace internal
} // namespace ui_controls
« no previous file with comments | « ui/ui_controls/ui_controls_aura.h ('k') | ui/views/widget/desktop_aura/desktop_root_window_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698