| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/test/launcher/unit_test_launcher.h" | 5 #include "base/test/launcher/unit_test_launcher.h" |
| 6 | 6 |
| 7 namespace base { | 7 namespace base { |
| 8 | 8 |
| 9 int LaunchUnitTests(int argc, | 9 int LaunchUnitTests(int argc, |
| 10 char** argv, | 10 char** argv, |
| 11 const RunTestSuiteCallback& run_test_suite) { | 11 const RunTestSuiteCallback& run_test_suite) { |
| 12 // Stub implementation - iOS doesn't support features we need for | 12 // Stub implementation - iOS doesn't support features we need for |
| 13 // the full test launcher (e.g. process_util). | 13 // the full test launcher (e.g. process_util). |
| 14 return run_test_suite.Run(); | 14 return run_test_suite.Run(); |
| 15 } | 15 } |
| 16 | 16 |
| 17 } // namespace base | 17 } // namespace base |
| OLD | NEW |