| Index: sandbox/linux/tests/sandbox_test_runner.cc
|
| diff --git a/sandbox/linux/tests/sandbox_test_runner.cc b/sandbox/linux/tests/sandbox_test_runner.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b099b972893da4286cc0989eb291a5d37c906727
|
| --- /dev/null
|
| +++ b/sandbox/linux/tests/sandbox_test_runner.cc
|
| @@ -0,0 +1,19 @@
|
| +// 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.h"
|
| +
|
| +namespace sandbox {
|
| +
|
| +SandboxTestRunner::SandboxTestRunner() {
|
| +}
|
| +
|
| +SandboxTestRunner::~SandboxTestRunner() {
|
| +}
|
| +
|
| +bool SandboxTestRunner::ShouldCheckForLeaks() const {
|
| + return true;
|
| +}
|
| +
|
| +} // namespace sandbox
|
|
|