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

Unified Diff: src/platform/minijail/interface.cc

Issue 466049: Baseline minijail with a commandline switch driven main. (Closed)
Patch Set: fix overly long lines Created 11 years 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
« no previous file with comments | « src/platform/minijail/interface.h ('k') | src/platform/minijail/minijail.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/minijail/interface.cc
diff --git a/src/platform/minijail/interface.cc b/src/platform/minijail/interface.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4cabff067fa74297a0c9579ef89e5bfee5e5a400
--- /dev/null
+++ b/src/platform/minijail/interface.cc
@@ -0,0 +1,23 @@
+// Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+// Some portions Copyright (c) 2009 The Chromium Authors.
+//
+// Default Interface implementation
+
+#include "minijail/env.h"
+#include "minijail/options.h"
+#include "minijail/interface.h"
+
+namespace chromeos {
+namespace minijail {
+
+bool Interface::Run() const {
+ LOG_IF(FATAL, !options()->executable_path()) << "No executable path given.";
+ return options()->env()->Run(options()->executable_path(),
+ options()->arguments(),
+ options()->environment());
+}
+
+} // namespace minijail
+} // namespace chromeos
« no previous file with comments | « src/platform/minijail/interface.h ('k') | src/platform/minijail/minijail.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698