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

Unified Diff: mojo/edk/system/connection_manager.h

Issue 1346383004: EDK: Remove MOJO_SYSTEM_IMPL_EXPORT, system_impl_export.h, etc. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 | « mojo/edk/system/configuration.h ('k') | mojo/edk/system/connection_manager_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « mojo/edk/system/configuration.h ('k') | mojo/edk/system/connection_manager_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698