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

Unified Diff: content/browser/sandbox_parameters_mac.h

Issue 2931173003: Implement the V2 sandbox in the process launcher. (Closed)
Patch Set: Fix deps Created 3 years, 6 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/browser/sandbox_parameters_mac.h
diff --git a/content/browser/sandbox_parameters_mac.h b/content/browser/sandbox_parameters_mac.h
new file mode 100644
index 0000000000000000000000000000000000000000..ddf7b4d1537e4a14cd47eb01c3c528bc208299de
--- /dev/null
+++ b/content/browser/sandbox_parameters_mac.h
@@ -0,0 +1,16 @@
+// Copyright 2017 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.
+
Robert Sesek 2017/06/13 19:05:08 Need #include guards.
Greg K 2017/06/14 17:21:17 Done.
+namespace sandbox {
+class SeatbeltExecClient;
+}
+
+namespace content {
+
+// Populates the |client| with the parameters that the sandbox needs to
+// resolve information that cannot be known at build time, such as
+// the user's home directory.
+void SetupRendererSandboxParameters(sandbox::SeatbeltExecClient* client);
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698