Index: content/common/section_util_win.h |
diff --git a/content/common/section_util_win.h b/content/common/section_util_win.h |
index b07239a4b87d4fd3a1695239c5a8dccf18d19102..fa08df93e4d8f7e7e7eb3cd486bb0c9360763e06 100644 |
--- a/content/common/section_util_win.h |
+++ b/content/common/section_util_win.h |
@@ -8,6 +8,8 @@ |
#include <windows.h> |
+#include "content/common/content_export.h" |
+ |
namespace chrome { |
// Duplicates a section handle from another process to the current process. |
@@ -16,7 +18,10 @@ HANDLE GetSectionFromProcess(HANDLE section, HANDLE process, bool read_only); |
// Duplicates a section handle from the current process for use in another |
// process. Returns the new valid handle or NULL on failure. |
-HANDLE GetSectionForProcess(HANDLE section, HANDLE process, bool read_only); |
+CONTENT_EXPORT HANDLE GetSectionForProcess( |
+ HANDLE section, |
+ HANDLE process, |
+ bool read_only); |
} // namespace chrome |