summaryrefslogtreecommitdiffstats
path: root/base/message_pump_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/message_pump_win.h')
-rw-r--r--base/message_pump_win.h12
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;