Index: mojo/edk/system/connection_manager.h |
diff --git a/mojo/edk/system/connection_manager.h b/mojo/edk/system/connection_manager.h |
index e0c3a6f7003bda53541d78e1793c3162ae808717..7cc0801fd984e4c54ad4cd94500b2c061b40c954 100644 |
--- a/mojo/edk/system/connection_manager.h |
+++ b/mojo/edk/system/connection_manager.h |
@@ -9,7 +9,6 @@ |
#include "mojo/edk/system/connection_identifier.h" |
#include "mojo/edk/system/process_identifier.h" |
-#include "mojo/edk/system/system_impl_export.h" |
#include "mojo/edk/system/thread_annotations.h" |
#include "mojo/public/cpp/system/macros.h" |
@@ -60,7 +59,7 @@ namespace system { |
// connected to the master by a special dedicated |RawChannel|, on which it does |
// synchronous IPC (note, however, that the master should never block on any |
// slave). |
-class MOJO_SYSTEM_IMPL_EXPORT ConnectionManager { |
+class ConnectionManager { |
public: |
enum class Result { |
FAILURE = 0, |
@@ -122,9 +121,8 @@ class MOJO_SYSTEM_IMPL_EXPORT ConnectionManager { |
}; |
// So logging macros and |DCHECK_EQ()|, etc. work. |
-MOJO_SYSTEM_IMPL_EXPORT inline std::ostream& operator<<( |
- std::ostream& out, |
- ConnectionManager::Result result) { |
+inline std::ostream& operator<<(std::ostream& out, |
+ ConnectionManager::Result result) { |
return out << static_cast<int>(result); |
} |