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

Unified Diff: content/common/sandbox_policy.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 years, 3 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..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

Powered by Google App Engine
This is Rietveld 408576698