diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 20:58:29 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 20:58:29 +0000 |
commit | 5036f187c5431c1afc5bac442e1d74390d7a3fa0 (patch) | |
tree | af465cf27c50860ca7773876ac7bf08b6b653875 /views/touchui | |
parent | 26c740c8fb36d3e59200cfab668eb9c5f7539d11 (diff) | |
download | chromium_src-5036f187c5431c1afc5bac442e1d74390d7a3fa0.zip chromium_src-5036f187c5431c1afc5bac442e1d74390d7a3fa0.tar.gz chromium_src-5036f187c5431c1afc5bac442e1d74390d7a3fa0.tar.bz2 |
Rename VIEWS_API to VIEWS_EXPORT.
R=rvargas@chromium.org
Review URL: http://codereview.chromium.org/7550038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/touchui')
-rw-r--r-- | views/touchui/gesture_manager.h | 2 | ||||
-rw-r--r-- | views/touchui/touch_factory.h | 4 | ||||
-rw-r--r-- | views/touchui/touch_selection_controller.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/views/touchui/gesture_manager.h b/views/touchui/gesture_manager.h index 22693f7..12fee961b7 100644 --- a/views/touchui/gesture_manager.h +++ b/views/touchui/gesture_manager.h @@ -22,7 +22,7 @@ class TouchEvent; // updates its internal state and optionally dispatches synthetic // events to the invoking view. // -class VIEWS_API GestureManager { +class VIEWS_EXPORT GestureManager { public: virtual ~GestureManager(); diff --git a/views/touchui/touch_factory.h b/views/touchui/touch_factory.h index 4792dd6..b18d8c3 100644 --- a/views/touchui/touch_factory.h +++ b/views/touchui/touch_factory.h @@ -11,7 +11,7 @@ #include "base/memory/singleton.h" #include "base/timer.h" -#include "views/views_api.h" +#include "views/views_export.h" typedef unsigned long Cursor; typedef unsigned long Window; @@ -21,7 +21,7 @@ typedef union _XEvent XEvent; namespace views { // Functions related to determining touch devices. -class VIEWS_API TouchFactory { +class VIEWS_EXPORT TouchFactory { public: // Define the touch params following the Multi-touch Protocol. enum TouchParam { diff --git a/views/touchui/touch_selection_controller.h b/views/touchui/touch_selection_controller.h index ce028e0..58f6f91 100644 --- a/views/touchui/touch_selection_controller.h +++ b/views/touchui/touch_selection_controller.h @@ -13,7 +13,7 @@ namespace views { // An interface implemented by a View that has text that can be selected. -class VIEWS_API TouchSelectionClientView +class VIEWS_EXPORT TouchSelectionClientView : public View, public ui::SimpleMenuModel::Delegate { public: @@ -28,7 +28,7 @@ class VIEWS_API TouchSelectionClientView // This defines the callback interface for other code to be notified of changes // in the state of a TouchSelectionClientView. -class VIEWS_API TouchSelectionController { +class VIEWS_EXPORT TouchSelectionController { public: virtual ~TouchSelectionController() {} |