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

Unified Diff: components/proxy_config/proxy_config_export.h

Issue 1221033002: Add proxy_config component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update copyrights Created 5 years, 6 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 | « components/proxy_config/proxy_config_dictionary_unittest.cc ('k') | components/proxy_config/proxy_prefs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proxy_config/proxy_config_export.h
diff --git a/components/proxy_config/proxy_config_export.h b/components/proxy_config/proxy_config_export.h
new file mode 100644
index 0000000000000000000000000000000000000000..2f73a9e1b5db2ccf7163275eb523805d9e9678b8
--- /dev/null
+++ b/components/proxy_config/proxy_config_export.h
@@ -0,0 +1,29 @@
+// Copyright 2015 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_PROXY_CONFIG_PROXY_CONFIG_EXPORT_H_
+#define COMPONENTS_PROXY_CONFIG_PROXY_CONFIG_EXPORT_H_
+
+#if defined(COMPONENT_BUILD)
+#if defined(WIN32)
+
+#if defined(PROXY_CONFIG_IMPLEMENTATION)
+#define PROXY_CONFIG_EXPORT __declspec(dllexport)
+#else
+#define PROXY_CONFIG_EXPORT __declspec(dllimport)
+#endif // defined(PROXY_CONFIG_IMPLEMENTATION)
+
+#else // defined(WIN32)
+#if defined(PROXY_CONFIG_IMPLEMENTATION)
+#define PROXY_CONFIG_EXPORT __attribute__((visibility("default")))
+#else
+#define PROXY_CONFIG_EXPORT
+#endif
+#endif
+
+#else // defined(COMPONENT_BUILD)
+#define PROXY_CONFIG_EXPORT
+#endif
+
+#endif // COMPONENTS_PROXY_CONFIG_PROXY_CONFIG_EXPORT_H_
« no previous file with comments | « components/proxy_config/proxy_config_dictionary_unittest.cc ('k') | components/proxy_config/proxy_prefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698