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

Unified Diff: base/win/scoped_process_information_unittest.cc

Issue 10387218: Make GlobalDescriptors::MaybeGet return -1 when the key is not found. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modifying the MULTIPROCESS_TEST_MAIN macro so it can be passed a setup method. Created 8 years, 6 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
Index: base/win/scoped_process_information_unittest.cc
diff --git a/base/win/scoped_process_information_unittest.cc b/base/win/scoped_process_information_unittest.cc
index 906c1568472d77f9f16ead5ba133f3127865db0d..e037806535682c9bc4fc0c260120cf74c9d12f8e 100644
--- a/base/win/scoped_process_information_unittest.cc
+++ b/base/win/scoped_process_information_unittest.cc
@@ -18,11 +18,11 @@ class ScopedProcessInformationTest : public base::MultiProcessTest {
PROCESS_INFORMATION* process_handle);
};
-MULTIPROCESS_TEST_MAIN(ReturnSeven) {
+MULTIPROCESS_TEST_MAIN(ReturnSeven, NULL) {
return 7;
}
-MULTIPROCESS_TEST_MAIN(ReturnNine) {
+MULTIPROCESS_TEST_MAIN(ReturnNine, NULL) {
return 9;
}

Powered by Google App Engine
This is Rietveld 408576698