| Index: base/test/test_process_killer_win.h
|
| diff --git a/base/test/test_process_killer_win.h b/base/test/test_process_killer_win.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..30aab8e8a1fb9f7a16af00d3403e0fbe674e00b0
|
| --- /dev/null
|
| +++ b/base/test/test_process_killer_win.h
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2013 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.
|
| +
|
| +#ifndef BASE_TEST_TEST_PROCESS_KILLER_WIN_H_
|
| +#define BASE_TEST_TEST_PROCESS_KILLER_WIN_H_
|
| +
|
| +#include "base/string16.h"
|
| +
|
| +namespace base {
|
| +
|
| +// Kills all running processes named |process_name| that have the string
|
| +// |argument| on their command line.
|
| +bool KillAllNamedProcessesWithArgument(const string16& process_name,
|
| + const string16& argument);
|
| +
|
| +} // namespace base
|
| +
|
| +#endif // BASE_TEST_TEST_PROCESS_KILLER_WIN_H_
|
|
|