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

Unified Diff: cc/output/output_surface.cc

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 | « blimp/client/feature/compositor/blimp_context_provider.cc ('k') | cc/resources/resource_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/output_surface.cc
diff --git a/cc/output/output_surface.cc b/cc/output/output_surface.cc
index dd100f4c0df903d6ccaf1ab05606ed89c97f3d0b..9ee9807ecdb90bf2ecdf2afb78b99ea6f3a7ee77 100644
--- a/cc/output/output_surface.cc
+++ b/cc/output/output_surface.cc
@@ -69,12 +69,12 @@ class SkiaGpuTraceMemoryDump : public SkTraceMemoryDump {
base::trace_event::MemoryAllocatorDumpGuid guid;
if (strcmp(backing_type, kGLTextureBackingType) == 0) {
- guid = gfx::GetGLTextureClientGUIDForTracing(share_group_tracing_guid_,
- gl_id);
+ guid = gl::GetGLTextureClientGUIDForTracing(share_group_tracing_guid_,
+ gl_id);
} else if (strcmp(backing_type, kGLBufferBackingType) == 0) {
- guid = gfx::GetGLBufferGUIDForTracing(tracing_process_id, gl_id);
+ guid = gl::GetGLBufferGUIDForTracing(tracing_process_id, gl_id);
} else if (strcmp(backing_type, kGLRenderbufferBackingType) == 0) {
- guid = gfx::GetGLRenderbufferGUIDForTracing(tracing_process_id, gl_id);
+ guid = gl::GetGLRenderbufferGUIDForTracing(tracing_process_id, gl_id);
}
if (!guid.empty()) {
« no previous file with comments | « blimp/client/feature/compositor/blimp_context_provider.cc ('k') | cc/resources/resource_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698