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

Unified Diff: ui/gl/gl_context.cc

Issue 2014223002: Follow-up fixes to changing namespace 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 | « ui/gl/gl_context.h ('k') | ui/gl/gl_context_cgl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_context.cc
diff --git a/ui/gl/gl_context.cc b/ui/gl/gl_context.cc
index 02728ddbf561bd36230fc4ee395af58cd34d0ffb..faf1270cfbee4329e1ef11cdde1990993d1004f5 100644
--- a/ui/gl/gl_context.cc
+++ b/ui/gl/gl_context.cc
@@ -92,7 +92,7 @@ std::string GLContext::GetGLRenderer() {
return std::string(renderer ? renderer : "");
}
-gl::YUVToRGBConverter* GLContext::GetYUVToRGBConverter() {
+YUVToRGBConverter* GLContext::GetYUVToRGBConverter() {
return nullptr;
}
@@ -107,7 +107,7 @@ bool GLContext::HasExtension(const char* name) {
}
const GLVersionInfo* GLContext::GetVersionInfo() {
- if(!version_info_) {
+ if (!version_info_) {
std::string version = GetGLVersion();
std::string renderer = GetGLRenderer();
version_info_ = base::WrapUnique(new GLVersionInfo(
@@ -213,7 +213,7 @@ void GLContext::SetRealGLApi() {
GLContextReal::GLContextReal(GLShareGroup* share_group)
: GLContext(share_group) {}
-scoped_refptr<gl::GPUTimingClient> GLContextReal::CreateGPUTimingClient() {
+scoped_refptr<GPUTimingClient> GLContextReal::CreateGPUTimingClient() {
if (!gpu_timing_) {
gpu_timing_.reset(GPUTiming::CreateGPUTiming(this));
}
« no previous file with comments | « ui/gl/gl_context.h ('k') | ui/gl/gl_context_cgl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698