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

Unified Diff: mojo/gles2/command_buffer_client_impl.cc

Issue 1127293003: Update mojo sdk to rev f84766d3b6420b7cf6a113d9d65d73cb5fe18d90 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge IPC fixes Created 5 years, 7 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: mojo/gles2/command_buffer_client_impl.cc
diff --git a/mojo/gles2/command_buffer_client_impl.cc b/mojo/gles2/command_buffer_client_impl.cc
index abe95f651df033f64bf0caf5aefd97f4585e499a..655be344160481c30ef878fa97b5811915538240 100644
--- a/mojo/gles2/command_buffer_client_impl.cc
+++ b/mojo/gles2/command_buffer_client_impl.cc
@@ -121,7 +121,9 @@ CommandBufferClientImpl::CommandBufferClientImpl(
last_put_offset_(-1),
next_transfer_buffer_id_(0),
async_waiter_(async_waiter) {
- command_buffer_.Bind(command_buffer_handle.Pass(), async_waiter);
+ command_buffer_.Bind(
+ mojo::InterfacePtrInfo<mojo::CommandBuffer>(
+ command_buffer_handle.Pass(), 0u), async_waiter);
command_buffer_.set_error_handler(this);
}

Powered by Google App Engine
This is Rietveld 408576698