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

Unified Diff: mojo/gles2/command_buffer_client_impl.h

Issue 772523004: Move code in //services/gles2 into namespace gles2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 | « no previous file | mojo/gles2/command_buffer_client_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/gles2/command_buffer_client_impl.h
diff --git a/mojo/gles2/command_buffer_client_impl.h b/mojo/gles2/command_buffer_client_impl.h
index 5cdcfce243591495c81311ff3597fab16e3f89f3..6b4f244cb76eb3622eca497711f3a0e4d76059fa 100644
--- a/mojo/gles2/command_buffer_client_impl.h
+++ b/mojo/gles2/command_buffer_client_impl.h
@@ -19,7 +19,6 @@ namespace base {
class RunLoop;
}
-namespace mojo {
namespace gles2 {
class CommandBufferClientImpl;
@@ -29,15 +28,15 @@ class CommandBufferDelegate {
virtual void ContextLost();
};
-class CommandBufferClientImpl : public CommandBufferClient,
- public ErrorHandler,
+class CommandBufferClientImpl : public mojo::CommandBufferClient,
+ public mojo::ErrorHandler,
public gpu::CommandBuffer,
public gpu::GpuControl {
public:
explicit CommandBufferClientImpl(
CommandBufferDelegate* delegate,
const MojoAsyncWaiter* async_waiter,
- ScopedMessagePipeHandle command_buffer_handle);
+ mojo::ScopedMessagePipeHandle command_buffer_handle);
~CommandBufferClientImpl() override;
// CommandBuffer implementation:
@@ -89,7 +88,7 @@ class CommandBufferClientImpl : public CommandBufferClient,
gpu::CommandBufferSharedState* shared_state() const { return shared_state_; }
CommandBufferDelegate* delegate_;
- CommandBufferPtr command_buffer_;
+ mojo::CommandBufferPtr command_buffer_;
scoped_ptr<SyncClientImpl> sync_client_impl_;
scoped_ptr<SyncPointClientImpl> sync_point_client_impl_;
@@ -104,6 +103,5 @@ class CommandBufferClientImpl : public CommandBufferClient,
};
} // gles2
-} // mojo
#endif // MOJO_GLES2_COMMAND_BUFFER_CLIENT_IMPL_H_
« no previous file with comments | « no previous file | mojo/gles2/command_buffer_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698