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

Unified Diff: mojo/system/platform_channel.h

Issue 106173003: Split mojo_system dylib into public and private (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win Created 7 years 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
Index: mojo/system/platform_channel.h
diff --git a/mojo/system/platform_channel.h b/mojo/system/platform_channel.h
index ca614a52ece3b34698ed753076bf6c6e0bfeae83..172f1bb9ad70e6d0c258ae54b90eba65e4aabb86 100644
--- a/mojo/system/platform_channel.h
+++ b/mojo/system/platform_channel.h
@@ -11,15 +11,15 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/process/launch.h"
-#include "mojo/public/system/system_export.h"
#include "mojo/system/platform_channel_handle.h"
+#include "mojo/system/system_impl_export.h"
class CommandLine;
namespace mojo {
namespace system {
-class MOJO_SYSTEM_EXPORT PlatformChannel {
+class MOJO_SYSTEM_IMPL_EXPORT PlatformChannel {
public:
virtual ~PlatformChannel();
@@ -53,7 +53,7 @@ class PlatformClientChannel;
// - In both these cases, "ownership" of the client channel is transferred (to
// the |PlatformClientChannel| or the child process).
// TODO(vtl): Add ways of passing it to other existing processes.
-class MOJO_SYSTEM_EXPORT PlatformServerChannel : public PlatformChannel {
+class MOJO_SYSTEM_IMPL_EXPORT PlatformServerChannel : public PlatformChannel {
public:
virtual ~PlatformServerChannel() {}
@@ -85,7 +85,7 @@ class MOJO_SYSTEM_EXPORT PlatformServerChannel : public PlatformChannel {
DISALLOW_COPY_AND_ASSIGN(PlatformServerChannel);
};
-class MOJO_SYSTEM_EXPORT PlatformClientChannel : public PlatformChannel {
+class MOJO_SYSTEM_IMPL_EXPORT PlatformClientChannel : public PlatformChannel {
public:
virtual ~PlatformClientChannel() {}

Powered by Google App Engine
This is Rietveld 408576698