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

Unified Diff: components/viz/hit_test/hit_test_export.h

Issue 2908783002: WIP Hittest Component.
Patch Set: change HitTestFlags to constants so we can mix and match and convert to struct naming convention Created 3 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
Index: components/viz/hit_test/hit_test_export.h
diff --git a/components/viz/hit_test/hit_test_export.h b/components/viz/hit_test/hit_test_export.h
new file mode 100644
index 0000000000000000000000000000000000000000..a655f1c301c2b350d5ef864d44628fcd50eb8b1e
--- /dev/null
+++ b/components/viz/hit_test/hit_test_export.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2017 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_VIZ_HIT_TEST_HIT_TEST_EXPORT_H_
+#define COMPONENTS_VIZ_HIT_TEST_HIT_TEST_EXPORT_H_
+
+#if defined(COMPONENT_BUILD)
+
+#if defined(WIN32)
+
+#if defined(HIT_TEST_IMPLEMENTATION)
+#define HIT_TEST_EXPORT __declspec(dllexport)
+#else
+#define HIT_TEST_EXPORT __declspec(dllimport)
+#endif // defined(VIZ_IMPLEMENTATION)
+
+#else // defined(WIN32)
+
+#if defined(HIT_TEST_IMPLEMENTATION)
+#define HIT_TEST_EXPORT __attribute__((visibility("default")))
+#else
+#define HIT_TEST_EXPORT
+#endif
+
+#endif
+
+#else // defined(COMPONENT_BUILD)
+#define HIT_TEST_EXPORT
+#endif
+
+#endif // COMPONENTS_VIZ_HITTEST_HITTEST_EXPORT_H_

Powered by Google App Engine
This is Rietveld 408576698