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

Unified Diff: chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc

Issue 2735113003: Changing SpawnChild to return a struct.
Patch Set: Created 3 years, 9 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/test/multiprocess_test_android.cc ('k') | chrome/common/component_flash_hint_file_linux_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
diff --git a/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc b/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
index db561a302c06ec3dceb32bc5d8721f4046ea03cb..0009a2575beb78538ff5c07d2c8a3207ceca89e9 100644
--- a/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
+++ b/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
@@ -470,7 +470,8 @@ base::Process CloudPrintProxyPolicyStartupTest::Launch(
.release(),
IPC::Channel::MODE_SERVER, this, IOTaskRunner());
- base::Process process = SpawnChild(name);
+ base::SpawnChildResult spawn_result = SpawnChild(name);
+ base::Process process = std::move(spawn_result.process);
EXPECT_TRUE(process.IsValid());
return process;
}
« no previous file with comments | « base/test/multiprocess_test_android.cc ('k') | chrome/common/component_flash_hint_file_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698