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

Unified Diff: gpu/ipc/service/gpu_channel_manager.h

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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
« no previous file with comments | « gpu/ipc/service/gpu_channel.cc ('k') | gpu/ipc/service/gpu_channel_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/service/gpu_channel_manager.h
diff --git a/gpu/ipc/service/gpu_channel_manager.h b/gpu/ipc/service/gpu_channel_manager.h
index 8300fc75d334516afe12e0a6697add62a663507c..27f6fd053dce21e8c7374fd49fc1e4d400215df7 100644
--- a/gpu/ipc/service/gpu_channel_manager.h
+++ b/gpu/ipc/service/gpu_channel_manager.h
@@ -30,7 +30,7 @@ namespace base {
class WaitableEvent;
}
-namespace gfx {
+namespace gl {
class GLShareGroup;
}
@@ -110,7 +110,7 @@ class GPU_EXPORT GpuChannelManager {
GpuChannel* LookupChannel(int32_t client_id) const;
- gfx::GLSurface* GetDefaultOffscreenSurface();
+ gl::GLSurface* GetDefaultOffscreenSurface();
GpuMemoryBufferFactory* gpu_memory_buffer_factory() {
return gpu_memory_buffer_factory_;
@@ -144,7 +144,7 @@ class GPU_EXPORT GpuChannelManager {
return sync_point_manager_;
}
- gfx::GLShareGroup* share_group() const { return share_group_.get(); }
+ gl::GLShareGroup* share_group() const { return share_group_.get(); }
gles2::MailboxManager* mailbox_manager() const {
return mailbox_manager_.get();
}
@@ -178,7 +178,7 @@ class GPU_EXPORT GpuChannelManager {
base::WaitableEvent* shutdown_event_;
- scoped_refptr<gfx::GLShareGroup> share_group_;
+ scoped_refptr<gl::GLShareGroup> share_group_;
scoped_refptr<gles2::MailboxManager> mailbox_manager_;
scoped_refptr<PreemptionFlag> preemption_flag_;
GpuMemoryManager gpu_memory_manager_;
@@ -189,7 +189,7 @@ class GPU_EXPORT GpuChannelManager {
scoped_refptr<gles2::ShaderTranslatorCache> shader_translator_cache_;
scoped_refptr<gles2::FramebufferCompletenessCache>
framebuffer_completeness_cache_;
- scoped_refptr<gfx::GLSurface> default_offscreen_surface_;
+ scoped_refptr<gl::GLSurface> default_offscreen_surface_;
GpuMemoryBufferFactory* const gpu_memory_buffer_factory_;
#if defined(OS_ANDROID)
// Last time we know the GPU was powered on. Global for tracking across all
« no previous file with comments | « gpu/ipc/service/gpu_channel.cc ('k') | gpu/ipc/service/gpu_channel_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698