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

Unified Diff: base/mach_ipc_mac.h

Issue 7474010: mac: Components build for base, easy part (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 5 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/process_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/mach_ipc_mac.h
diff --git a/base/mach_ipc_mac.h b/base/mach_ipc_mac.h
index 4e80f628b89f7687a7a267d85855e145f4554c25..2ae7084546b308e4753d604637f623e90cdd1412 100644
--- a/base/mach_ipc_mac.h
+++ b/base/mach_ipc_mac.h
@@ -13,6 +13,7 @@
#include <CoreServices/CoreServices.h>
+#include "base/base_api.h"
#include "base/basictypes.h"
//==============================================================================
@@ -138,7 +139,7 @@ class MachMsgPortDescriptor : public mach_msg_port_descriptor_t {
// A MachMessage object is used by ReceivePort::WaitForMessage
// and MachPortSender::SendMessage
//
-class MachMessage {
+class BASE_API MachMessage {
public:
static const size_t kEmptyMessageSize;
@@ -244,7 +245,7 @@ class MachReceiveMessage : public MachMessage {
};
//==============================================================================
-class MachSendMessage : public MachMessage {
+class BASE_API MachSendMessage : public MachMessage {
public:
explicit MachSendMessage(int32_t message_id);
MachSendMessage(void *storage, size_t storage_length, int32_t message_id);
@@ -257,7 +258,7 @@ class MachSendMessage : public MachMessage {
//==============================================================================
// Represents a Mach port for which we have receive rights
-class ReceivePort {
+class BASE_API ReceivePort {
public:
// Creates a new Mach port for receiving messages and registers a name for it
explicit ReceivePort(const char *receive_port_name);
@@ -288,7 +289,7 @@ class ReceivePort {
//==============================================================================
// Represents a Mach port for which we have send rights
-class MachPortSender {
+class BASE_API 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/process_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698