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/focus/focus_manager.h | |
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/focus/focus_manager.h')
-rw-r--r-- | views/focus/focus_manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/focus/focus_manager.h b/views/focus/focus_manager.h index ca31752..f2bf069 100644 --- a/views/focus/focus_manager.h +++ b/views/focus/focus_manager.h @@ -79,7 +79,7 @@ class Widget; // The FocusTraversable interface is used by components that want to process // focus traversal events (due to Tab/Shift-Tab key events). -class VIEWS_API FocusTraversable { +class VIEWS_EXPORT FocusTraversable { public: // Return a FocusSearch object that implements the algorithm to find // the next or previous focusable view. @@ -101,7 +101,7 @@ class VIEWS_API FocusTraversable { // This interface should be implemented by classes that want to be notified when // the focus is about to change. See the Add/RemoveFocusChangeListener methods. // No change to focus state has occurred yet when this function is called. -class VIEWS_API FocusChangeListener { +class VIEWS_EXPORT FocusChangeListener { public: virtual void FocusWillChange(View* focused_before, View* focused_now) = 0; @@ -123,9 +123,9 @@ class WidgetFocusChangeListener { virtual ~WidgetFocusChangeListener() {} }; -class VIEWS_API FocusManager { +class VIEWS_EXPORT FocusManager { public: - class VIEWS_API WidgetFocusManager { + class VIEWS_EXPORT WidgetFocusManager { public: // Returns the singleton instance. static WidgetFocusManager* GetInstance(); |