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

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

Issue 1340983002: Mandoline UI Process: Update namespaces and file names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 3 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_impl_observer.h ('k') | components/mus/gles2/command_buffer_local.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/gles2/command_buffer_local.h
diff --git a/components/mus/gles2/command_buffer_local.h b/components/mus/gles2/command_buffer_local.h
index bc50bdff82300c015f47639198171a87b5a38146..14c48217c44a70890d7fbb11f1ce67de1b569b38 100644
--- a/components/mus/gles2/command_buffer_local.h
+++ b/components/mus/gles2/command_buffer_local.h
@@ -31,9 +31,10 @@ class GLContext;
class GLSurface;
}
-namespace gles2 {
+namespace mus {
class CommandBufferLocalClient;
+class GpuState;
// This class provides a thin wrapper around a CommandBufferService and a
// GpuControl implementation to allow cc::Display to generate GL directly on
@@ -42,7 +43,7 @@ class CommandBufferLocal : public gpu::GpuControl {
public:
CommandBufferLocal(CommandBufferLocalClient* client,
gfx::AcceleratedWidget widget,
- const scoped_refptr<gles2::GpuState>& gpu_state);
+ const scoped_refptr<GpuState>& gpu_state);
~CommandBufferLocal() override;
bool Initialize();
@@ -83,7 +84,7 @@ class CommandBufferLocal : public gpu::GpuControl {
void OnSyncPointRetired();
gfx::AcceleratedWidget widget_;
- scoped_refptr<gles2::GpuState> gpu_state_;
+ scoped_refptr<GpuState> gpu_state_;
scoped_ptr<gpu::CommandBufferService> command_buffer_;
scoped_ptr<gpu::GpuScheduler> scheduler_;
scoped_ptr<gpu::gles2::GLES2Decoder> decoder_;
@@ -96,6 +97,6 @@ class CommandBufferLocal : public gpu::GpuControl {
DISALLOW_COPY_AND_ASSIGN(CommandBufferLocal);
};
-} // namespace gles2
+} // namespace mus
#endif // COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_
« no previous file with comments | « components/mus/gles2/command_buffer_impl_observer.h ('k') | components/mus/gles2/command_buffer_local.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698