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

Unified Diff: components/mus/gles2/command_buffer_impl.h

Issue 1406153004: components/mus/public/interfaces View => Window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yet another rebase Created 5 years, 2 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 | « components/mus/gles2/command_buffer_driver.cc ('k') | components/mus/gles2/command_buffer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/gles2/command_buffer_impl.h
diff --git a/components/mus/gles2/command_buffer_impl.h b/components/mus/gles2/command_buffer_impl.h
index 4241ac32632372bf97a7a52ccb682e5d1551100b..df410954a927372cab71a55755bf37089773d127 100644
--- a/components/mus/gles2/command_buffer_impl.h
+++ b/components/mus/gles2/command_buffer_impl.h
@@ -21,16 +21,16 @@ class GpuState;
// so that we can insert sync points without blocking on the GL driver. It
// forwards most method calls to the CommandBufferDriver, which runs on the
// same thread as the native viewport.
-class CommandBufferImpl : public mojo::CommandBuffer {
+class CommandBufferImpl : public mojom::CommandBuffer {
public:
CommandBufferImpl(mojo::InterfaceRequest<CommandBuffer> request,
scoped_refptr<GpuState> gpu_state,
scoped_ptr<CommandBufferDriver> driver);
- // mojo::CommandBuffer:
- void Initialize(mojo::CommandBufferSyncClientPtr sync_client,
- mojo::CommandBufferSyncPointClientPtr sync_point_client,
- mojo::CommandBufferLostContextObserverPtr loss_observer,
+ // mojom::CommandBuffer:
+ void Initialize(mojom::CommandBufferSyncClientPtr sync_client,
+ mojom::CommandBufferSyncPointClientPtr sync_point_client,
+ mojom::CommandBufferLostContextObserverPtr loss_observer,
mojo::ScopedSharedBufferHandle shared_state,
mojo::Array<int32_t> attribs) override;
void SetGetBuffer(int32_t buffer) override;
@@ -71,7 +71,7 @@ class CommandBufferImpl : public mojo::CommandBuffer {
scoped_refptr<GpuState> gpu_state_;
scoped_refptr<base::SingleThreadTaskRunner> driver_task_runner_;
scoped_ptr<CommandBufferDriver> driver_;
- mojo::CommandBufferSyncPointClientPtr sync_point_client_;
+ mojom::CommandBufferSyncPointClientPtr sync_point_client_;
scoped_ptr<mojo::Binding<CommandBuffer>> binding_;
CommandBufferImplObserver* observer_;
base::WeakPtrFactory<CommandBufferImpl> weak_ptr_factory_;
« no previous file with comments | « components/mus/gles2/command_buffer_driver.cc ('k') | components/mus/gles2/command_buffer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698