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

Unified Diff: chrome/gpu/gpu_arc_video_service.cc

Issue 2592623002: mojo:: Introduce InterfaceRequest ctor that takes in InterfacePtr* (Closed)
Patch Set: Rebase + response to review Created 4 years 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 | « chrome/browser/task_manager/providers/child_process_task.cc ('k') | components/exo/surface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/gpu/gpu_arc_video_service.cc
diff --git a/chrome/gpu/gpu_arc_video_service.cc b/chrome/gpu/gpu_arc_video_service.cc
index 822566fe562fa760e3636daf69ed6dab37478a5c..6bd5fd551875e5a47a1dbc9c16c261eaba0eaa36 100644
--- a/chrome/gpu/gpu_arc_video_service.cc
+++ b/chrome/gpu/gpu_arc_video_service.cc
@@ -136,8 +136,7 @@ void GpuArcVideoService::DeprecatedConnect(
service->client_.set_connection_error_handler(base::Bind(&OnConnectionError));
::arc::mojom::VideoAcceleratorServicePtr service_proxy;
- ::arc::mojom::VideoAcceleratorServiceRequest request =
- mojo::MakeRequest(&service_proxy);
+ ::arc::mojom::VideoAcceleratorServiceRequest request(&service_proxy);
service->client_->DeprecatedInit(std::move(service_proxy));
auto binding = mojo::MakeStrongBinding(std::move(service),
« no previous file with comments | « chrome/browser/task_manager/providers/child_process_task.cc ('k') | components/exo/surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698