Index: content/common/sandbox_policy.h |
diff --git a/content/common/sandbox_policy.h b/content/common/sandbox_policy.h |
index 55dc0c5dd9d302d1de55f9087f75e58692a3c5d5..4d87717b846e138a5062dbcb30b757d8de657a30 100644 |
--- a/content/common/sandbox_policy.h |
+++ b/content/common/sandbox_policy.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 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. |
@@ -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 |