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

Unified Diff: content/common/sandbox_policy.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/sandbox_policy.h
diff --git a/content/common/sandbox_policy.h b/content/common/sandbox_policy.h
index 55dc0c5dd9d302d1de55f9087f75e58692a3c5d5..3fdfd80a7887c2901f18470b32615fc9f8769b76 100644
--- a/content/common/sandbox_policy.h
+++ b/content/common/sandbox_policy.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/process.h"
+#include "content/common/content_export.h"
class CommandLine;
class FilePath;
@@ -15,12 +16,14 @@ namespace sandbox {
class BrokerServices;
-void InitBrokerServices(sandbox::BrokerServices* broker_services);
+CONTENT_EXPORT void InitBrokerServices(
+ sandbox::BrokerServices* broker_services);
// Starts a sandboxed process with the given directory unsandboxed
// and returns a handle to it.
-base::ProcessHandle StartProcessWithAccess(CommandLine* cmd_line,
- const FilePath& exposed_dir);
+CONTENT_EXPORT base::ProcessHandle StartProcessWithAccess(
+ CommandLine* cmd_line,
+ const FilePath& exposed_dir);
} // namespace sandbox

Powered by Google App Engine
This is Rietveld 408576698