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

Unified Diff: components/discardable_memory/common/discardable_memory_export.h

Issue 2459733002: Move discardable memory to //components from //content (Closed)
Patch Set: Fix build error Created 4 years, 1 month 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/discardable_memory/common/discardable_memory_export.h
diff --git a/components/discardable_memory/common/discardable_memory_export.h b/components/discardable_memory/common/discardable_memory_export.h
new file mode 100644
index 0000000000000000000000000000000000000000..32942538b01b5f0b587dd3a294e2e36b5b69e14b
--- /dev/null
+++ b/components/discardable_memory/common/discardable_memory_export.h
@@ -0,0 +1,29 @@
+// Copyright (c) 2016 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_DISCARDABLE_MEMORY_COMMON_DISCARDABLE_MEMORY_EXPORT_H_
+#define COMPONENTS_DISCARDABLE_MEMORY_COMMON_DISCARDABLE_MEMORY_EXPORT_H_
+
+#if defined(COMPONENT_BUILD)
+#if defined(WIN32)
+
+#if defined(DISCARDABLE_MEMORY_IMPLEMENTATION)
+#define DISCARDABLE_MEMORY_EXPORT __declspec(dllexport)
+#else
+#define DISCARDABLE_MEMORY_EXPORT __declspec(dllimport)
+#endif // defined(DISCARDABLE_MEMORY_IMPLEMENTATION)
+
+#else // defined(WIN32)
+#if defined(DISCARDABLE_MEMORY_IMPLEMENTATION)
+#define DISCARDABLE_MEMORY_EXPORT __attribute__((visibility("default")))
+#else
+#define DISCARDABLE_MEMORY_EXPORT
+#endif
+#endif
+
+#else // defined(COMPONENT_BUILD)
+#define DISCARDABLE_MEMORY_EXPORT
+#endif
+
+#endif // COMPONENTS_DISCARDABLE_MEMORY_COMMON_DISCARDABLE_MEMORY_EXPORT_H_
« no previous file with comments | « components/discardable_memory/common/BUILD.gn ('k') | components/discardable_memory/common/discardable_shared_memory_heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698