mojo: Remove deprecated CreateDataPipe overload that takes pointer out-args
Bug: 944990
Change-Id: I407992469e63ff241a2295d4029a5f36d1d5304d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2698090
Reviewed-by: Colin Blundell <[email protected]>
Reviewed-by: Avi Drissman <[email protected]>
Reviewed-by: Ken Rockot <[email protected]>
Reviewed-by: Kevin Marshall <[email protected]>
Reviewed-by: Reilly Grant <[email protected]>
Reviewed-by: Xiaohan Wang <[email protected]>
Reviewed-by: Kinuko Yasuda <[email protected]>
Commit-Queue: Robert Sesek <[email protected]>
Cr-Commit-Position: refs/heads/master@{#855820}
diff --git a/content/renderer/loader/navigation_body_loader_unittest.cc b/content/renderer/loader/navigation_body_loader_unittest.cc
index 32f2db4..5fe649f 100644
--- a/content/renderer/loader/navigation_body_loader_unittest.cc
+++ b/content/renderer/loader/navigation_body_loader_unittest.cc
@@ -335,7 +335,7 @@
mojo::ScopedDataPipeProducerHandle producer_handle;
mojo::ScopedDataPipeConsumerHandle consumer_handle;
MojoResult rv =
- mojo::CreateDataPipe(nullptr, &producer_handle, &consumer_handle);
+ mojo::CreateDataPipe(nullptr, producer_handle, consumer_handle);
ASSERT_EQ(MOJO_RESULT_OK, rv);
NavigationBodyLoader::FillNavigationParamsResponseAndBodyLoader(
std::move(common_params), std::move(commit_params), /*request_id=*/1,