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

Unified Diff: content/common/section_util_win.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: fix exports for switches, content_main Created 9 years, 4 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: content/common/section_util_win.h
diff --git a/content/common/section_util_win.h b/content/common/section_util_win.h
index b07239a4b87d4fd3a1695239c5a8dccf18d19102..0815b060ce224b4ecf6f445b3fd00a0451fbd7e5 100644
--- a/content/common/section_util_win.h
+++ b/content/common/section_util_win.h
@@ -6,6 +6,8 @@
#define CONTENT_COMMON_SECTION_UTIL_WIN_H_
#pragma once
+#include "content/common/content_export.h"
darin (slow to review) 2011/09/04 15:41:04 nit: include system headers first
Dirk Pranke 2011/09/07 01:46:07 Done.
+
#include <windows.h>
namespace chrome {
@@ -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

Powered by Google App Engine
This is Rietveld 408576698