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

Unified Diff: base/mach_ipc_mac.h

Issue 7461141: Rename BASE_API to BASE_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « base/mac/scoped_nsexception_enabler.h ('k') | base/md5.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/mach_ipc_mac.h
===================================================================
--- base/mach_ipc_mac.h (revision 95578)
+++ base/mach_ipc_mac.h (working copy)
@@ -13,7 +13,7 @@
#include <CoreServices/CoreServices.h>
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/basictypes.h"
//==============================================================================
@@ -139,7 +139,7 @@
// A MachMessage object is used by ReceivePort::WaitForMessage
// and MachPortSender::SendMessage
//
-class BASE_API MachMessage {
+class BASE_EXPORT MachMessage {
public:
static const size_t kEmptyMessageSize;
@@ -245,7 +245,7 @@
};
//==============================================================================
-class BASE_API MachSendMessage : public MachMessage {
+class BASE_EXPORT MachSendMessage : public MachMessage {
public:
explicit MachSendMessage(int32_t message_id);
MachSendMessage(void *storage, size_t storage_length, int32_t message_id);
@@ -258,7 +258,7 @@
//==============================================================================
// Represents a Mach port for which we have receive rights
-class BASE_API ReceivePort {
+class BASE_EXPORT ReceivePort {
public:
// Creates a new Mach port for receiving messages and registers a name for it
explicit ReceivePort(const char *receive_port_name);
@@ -289,7 +289,7 @@
//==============================================================================
// Represents a Mach port for which we have send rights
-class BASE_API MachPortSender {
+class BASE_EXPORT MachPortSender {
public:
// get a port with send rights corresponding to a named registered service
explicit MachPortSender(const char *receive_port_name);
« no previous file with comments | « base/mac/scoped_nsexception_enabler.h ('k') | base/md5.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698