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

Unified Diff: components/domain_reliability/domain_reliability_export.h

Issue 252613002: Domain Reliability: More security review. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix one unittest Created 6 years, 8 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
Index: components/domain_reliability/domain_reliability_export.h
diff --git a/components/domain_reliability/domain_reliability_export.h b/components/domain_reliability/domain_reliability_export.h
index d0951cc082ca49aa8a2f67aaaa6e32196a5d544e..e37571c12a80967a3af995209fbdff93265abf78 100644
--- a/components/domain_reliability/domain_reliability_export.h
+++ b/components/domain_reliability/domain_reliability_export.h
@@ -12,18 +12,21 @@
#define DOMAIN_RELIABILITY_EXPORT __declspec(dllexport)
#else
#define DOMAIN_RELIABILITY_EXPORT __declspec(dllimport)
-#endif // defined(DOMAIN_RELIABILITY_IMPLEMENTATION)
+#endif
#else // defined(WIN32)
+
#if defined(DOMAIN_RELIABILITY_IMPLEMENTATION)
#define DOMAIN_RELIABILITY_EXPORT __attribute__((visibility("default")))
#else
#define DOMAIN_RELIABILITY_EXPORT
#endif
-#endif
+#endif // defined(WIN32)
#else // defined(COMPONENT_BUILD)
+
#define DOMAIN_RELIABILITY_EXPORT
+
#endif
#endif // COMPONENTS_DOMAIN_RELIABILITY_DOMAIN_RELIABILITY_EXPORT_H_

Powered by Google App Engine
This is Rietveld 408576698