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

Unified Diff: base/test/test_process_util_win.h

Issue 12314043: Make Ash unittests clean up zombie viewer processes between test runs. These zombie viewer proce… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months 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 | « base/base.gyp ('k') | base/test/test_process_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/test_process_util_win.h
diff --git a/base/test/test_process_util_win.h b/base/test/test_process_util_win.h
new file mode 100644
index 0000000000000000000000000000000000000000..792d7eb7e9fe97f2b9e0a19eebdbaabd3c465ac6
--- /dev/null
+++ b/base/test/test_process_util_win.h
@@ -0,0 +1,17 @@
+// 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_UTIL_WIN_H_
+#define BASE_TEST_TEST_PROCESS_UTIL_WIN_H_
+
+#include "base/string16.h"
+
+// Kills all running processes named |process_name| that have the string
+// |argument| on their command line. Useful for killing all Chrome Frame
brettw 2013/02/22 20:31:02 Please fix comment not to reference C.F.
robertshield 2013/02/22 21:10:41 Done.
+// instances of Chrome that all have --chrome-frame in their command line.
+bool KillAllNamedProcessesWithArgument(const string16& process_name,
+ const string16& argument);
+
+
+#endif // BASE_TEST_TEST_PROCESS_UTIL_WIN_H_
« no previous file with comments | « base/base.gyp ('k') | base/test/test_process_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698