summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_message.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-15 20:41:46 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-15 20:41:46 +0000
commit7c85437ca6d8f1e16c0327a09eab3aa4cee4df1b (patch)
tree1a75b53cdf901b6a560bcf5ddbe84ec7a3e8c9c0 /ipc/ipc_message.h
parentedd685f15dfd2841aaeddab567aea0623db1ae69 (diff)
downloadchromium_src-7c85437ca6d8f1e16c0327a09eab3aa4cee4df1b.zip
chromium_src-7c85437ca6d8f1e16c0327a09eab3aa4cee4df1b.tar.gz
chromium_src-7c85437ca6d8f1e16c0327a09eab3aa4cee4df1b.tar.bz2
Create ipc.dll.
Review URL: http://codereview.chromium.org/7633042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96820 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message.h')
-rw-r--r--ipc/ipc_message.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/ipc/ipc_message.h b/ipc/ipc_message.h
index 8d367f2..b978cf2 100644
--- a/ipc/ipc_message.h
+++ b/ipc/ipc_message.h
@@ -2,14 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef IPC_IPC_MESSAGE_H__
-#define IPC_IPC_MESSAGE_H__
+#ifndef IPC_IPC_MESSAGE_H_
+#define IPC_IPC_MESSAGE_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/pickle.h"
+#include "ipc/ipc_export.h"
#ifndef NDEBUG
#define IPC_MESSAGE_LOG_ENABLED
@@ -33,10 +34,10 @@ class Channel;
class Message;
struct LogData;
-class Message : public Pickle {
+class IPC_EXPORT Message : public Pickle {
public:
// Implemented by objects that can send IPC messages across a channel.
- class Sender {
+ class IPC_EXPORT Sender {
public:
virtual ~Sender() {}
@@ -280,4 +281,4 @@ enum SpecialRoutingIDs {
#define IPC_REPLY_ID 0xFFFFFFF0 // Special message id for replies
#define IPC_LOGGING_ID 0xFFFFFFF1 // Special message id for logging
-#endif // IPC_IPC_MESSAGE_H__
+#endif // IPC_IPC_MESSAGE_H_