Index: sandbox/linux/tests/sandbox_test_runner_function_pointer.cc |
diff --git a/sandbox/linux/tests/sandbox_test_runner_function_pointer.cc b/sandbox/linux/tests/sandbox_test_runner_function_pointer.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..69e05ac4e0a64817eb8ae48a33108eccd16298e6 |
--- /dev/null |
+++ b/sandbox/linux/tests/sandbox_test_runner_function_pointer.cc |
@@ -0,0 +1,25 @@ |
+// Copyright 2014 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. |
+ |
+#include "sandbox/linux/tests/sandbox_test_runner_function_pointer.h" |
+ |
+#include "base/logging.h" |
+#include "build/build_config.h" |
+ |
+namespace sandbox { |
+ |
+SandboxTestRunnerFunctionPointer::SandboxTestRunnerFunctionPointer( |
+ void (*function_to_run)(void)) |
+ : function_to_run_(function_to_run) { |
+} |
+ |
+SandboxTestRunnerFunctionPointer::~SandboxTestRunnerFunctionPointer() { |
+} |
+ |
+void SandboxTestRunnerFunctionPointer::Run() { |
+ DCHECK(function_to_run_); |
+ function_to_run_(); |
+} |
+ |
+} // namespace sandbox |