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

Unified Diff: ui/gl/gl_gl_api_implementation.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows Created 5 years, 5 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.cc ('k') | ui/gl/gl_implementation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_gl_api_implementation.cc
diff --git a/ui/gl/gl_gl_api_implementation.cc b/ui/gl/gl_gl_api_implementation.cc
index 1d6fcb15d0a57485bd0c12bc5618f53d1d85ed04..76af7446ddb0c6d4e110fa221b15745c37849a10 100644
--- a/ui/gl/gl_gl_api_implementation.cc
+++ b/ui/gl/gl_gl_api_implementation.cc
@@ -492,7 +492,7 @@ void RealGLApi::InitializeFilteredExtensions() {
}
// Construct filtered extensions string for GL_EXTENSIONS string lookups.
- filtered_exts_str_ = JoinString(filtered_exts_, " ");
+ filtered_exts_str_ = base::JoinString(filtered_exts_, " ");
}
}
@@ -530,7 +530,7 @@ void VirtualGLApi::Initialize(DriverGL* driver, GLContext* real_context) {
if (it != ext.end())
ext.erase(it);
- extensions_ = JoinString(ext, " ");
+ extensions_ = base::JoinString(ext, " ");
}
bool VirtualGLApi::MakeCurrent(GLContext* virtual_context, GLSurface* surface) {
« no previous file with comments | « ui/gl/gl_context.cc ('k') | ui/gl/gl_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698