diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 15:34:00 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 15:34:00 +0000 |
commit | 0bea7254836d17e3f1e278cbd52e8b8816c49a48 (patch) | |
tree | eb16c01ad0143fad583cd60a87828fd90c94f61a /base/message_pump_win.h | |
parent | 93f3edc8adc1db9e3d1deebde0ec58d15b7e1a91 (diff) | |
download | chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.zip chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.tar.gz chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.tar.bz2 |
Rename BASE_API to BASE_EXPORT.
R=rvargas
Review URL: http://codereview.chromium.org/7461141
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95618 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_pump_win.h')
-rw-r--r-- | base/message_pump_win.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/base/message_pump_win.h b/base/message_pump_win.h index 721074f..5f17610 100644 --- a/base/message_pump_win.h +++ b/base/message_pump_win.h @@ -10,7 +10,7 @@ #include <list> -#include "base/base_api.h" +#include "base/base_export.h" #include "base/basictypes.h" #include "base/message_pump.h" #include "base/observer_list.h" @@ -22,14 +22,14 @@ namespace base { // MessagePumpWin serves as the base for specialized versions of the MessagePump // for Windows. It provides basic functionality like handling of observers and // controlling the lifetime of the message pump. -class BASE_API MessagePumpWin : public MessagePump { +class BASE_EXPORT MessagePumpWin : public MessagePump { public: // An Observer is an object that receives global notifications from the // UI MessageLoop. // // NOTE: An Observer implementation should be extremely fast! // - class BASE_API Observer { + class BASE_EXPORT Observer { public: virtual ~Observer() {} @@ -50,7 +50,7 @@ class BASE_API MessagePumpWin : public MessagePump { // // The nested loop is exited by either posting a quit, or returning false // from Dispatch. - class BASE_API Dispatcher { + class BASE_EXPORT Dispatcher { public: virtual ~Dispatcher() {} // Dispatches the event. If true is returned processing continues as @@ -157,7 +157,7 @@ class BASE_API MessagePumpWin : public MessagePump { // an excellent choice. It is also helpful that the starter messages that are // placed in the queue when new task arrive also awakens DoRunLoop. // -class BASE_API MessagePumpForUI : public MessagePumpWin { +class BASE_EXPORT MessagePumpForUI : public MessagePumpWin { public: // The application-defined code passed to the hook procedure. static const int kMessageFilterCode = 0x5001; @@ -196,7 +196,7 @@ class BASE_API MessagePumpForUI : public MessagePumpWin { // deal with Windows mesagges, and instead has a Run loop based on Completion // Ports so it is better suited for IO operations. // -class BASE_API MessagePumpForIO : public MessagePumpWin { +class BASE_EXPORT MessagePumpForIO : public MessagePumpWin { public: struct IOContext; |