Index: mojo/edk/system/configuration.h |
diff --git a/mojo/edk/system/configuration.h b/mojo/edk/system/configuration.h |
index 007277ade94fbdcd3ae6483033fd6adf222a27d3..a923d3849003dc7d3610d54ab4fd1c2f1fc9741c 100644 |
--- a/mojo/edk/system/configuration.h |
+++ b/mojo/edk/system/configuration.h |
@@ -6,22 +6,19 @@ |
#define MOJO_EDK_SYSTEM_CONFIGURATION_H_ |
#include "mojo/edk/embedder/configuration.h" |
-#include "mojo/edk/system/system_impl_export.h" |
namespace mojo { |
namespace system { |
namespace internal { |
-MOJO_SYSTEM_IMPL_EXPORT extern embedder::Configuration g_configuration; |
+extern embedder::Configuration g_configuration; |
} // namespace internal |
-MOJO_SYSTEM_IMPL_EXPORT inline const embedder::Configuration& |
-GetConfiguration() { |
+inline const embedder::Configuration& GetConfiguration() { |
return internal::g_configuration; |
} |
-MOJO_SYSTEM_IMPL_EXPORT inline embedder::Configuration* |
-GetMutableConfiguration() { |
+inline embedder::Configuration* GetMutableConfiguration() { |
return &internal::g_configuration; |
} |