summaryrefslogtreecommitdiff
path: root/chromium/components/network_session_configurator/common/network_session_configurator_export.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/network_session_configurator/common/network_session_configurator_export.h')
-rw-r--r--chromium/components/network_session_configurator/common/network_session_configurator_export.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/chromium/components/network_session_configurator/common/network_session_configurator_export.h b/chromium/components/network_session_configurator/common/network_session_configurator_export.h
new file mode 100644
index 00000000000..d4a224d270f
--- /dev/null
+++ b/chromium/components/network_session_configurator/common/network_session_configurator_export.h
@@ -0,0 +1,35 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_NETWORK_SESSION_CONFIGURATOR_NETWORK_SESSION_CONFIGURATOR_EXPORT_H_
+#define COMPONENTS_NETWORK_SESSION_CONFIGURATOR_NETWORK_SESSION_CONFIGURATOR_EXPORT_H_
+
+#if defined(COMPONENT_BUILD)
+
+#if defined(WIN32)
+
+#if defined(NETWORK_SESSION_CONFIGURATOR_IMPLEMENTATION)
+#define NETWORK_SESSION_CONFIGURATOR_EXPORT __declspec(dllexport)
+#else
+#define NETWORK_SESSION_CONFIGURATOR_EXPORT __declspec(dllimport)
+#endif // defined(NETWORK_SESSION_CONFIGURATOR_IMPLEMENTATION)
+
+#else // defined(WIN32)
+
+#if defined(NETWORK_SESSION_CONFIGURATOR_IMPLEMENTATION)
+#define NETWORK_SESSION_CONFIGURATOR_EXPORT \
+ __attribute__((visibility("default")))
+#else
+#define NETWORK_SESSION_CONFIGURATOR_EXPORT
+#endif // defined(NETWORK_SESSION_CONFIGURATOR_IMPLEMENTATION)
+
+#endif // defined(WIN32)
+
+#else // defined(COMPONENT_BUILD)
+
+#define NETWORK_SESSION_CONFIGURATOR_EXPORT
+
+#endif // defined(COMPONENT_BUILD)
+
+#endif // COMPONENTS_NETWORK_SESSION_CONFIGURATOR_NETWORK_SESSION_CONFIGURATOR_EXPORT_H_