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

Unified Diff: content/common/content_export.h

Issue 11270027: Add a ResourceScheduler to ResourceDispatcherHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Manage ownership with handles Created 8 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: content/common/content_export.h
diff --git a/content/common/content_export.h b/content/common/content_export.h
index 20d647a3e593a0166a25c7e69d7e3a4ea251ccfc..5a5684d27b547f81f37fdb39bd8fd7c2ddf60781 100644
--- a/content/common/content_export.h
+++ b/content/common/content_export.h
@@ -10,20 +10,25 @@
#if defined(CONTENT_IMPLEMENTATION)
#define CONTENT_EXPORT __declspec(dllexport)
+#define CONTENT_EXPORT_PRIVATE __declspec(dllexport)
#else
#define CONTENT_EXPORT __declspec(dllimport)
+#define CONTENT_EXPORT_PRIVATE __declspec(dllimport)
#endif // defined(CONTENT_IMPLEMENTATION)
#else // defined(WIN32)
#if defined(CONTENT_IMPLEMENTATION)
#define CONTENT_EXPORT __attribute__((visibility("default")))
+#define CONTENT_EXPORT_PRIVATE __attribute__((visibility("default")))
#else
#define CONTENT_EXPORT
+#define CONTENT_EXPORT_PRIVATE
#endif
#endif
#else // defined(COMPONENT_BUILD)
#define CONTENT_EXPORT
+#define CONTENT_EXPORT_PRIVATE
#endif
#endif // CONTENT_COMMON_CONTENT_EXPORT_H_

Powered by Google App Engine
This is Rietveld 408576698