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

Unified Diff: ui/gl/gl_context_nsview.mm

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 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
Index: ui/gl/gl_context_nsview.mm
diff --git a/ui/gl/gl_context_nsview.mm b/ui/gl/gl_context_nsview.mm
index 464ca3e62f5b7c70f2b1eef9d9ad3853075670f5..b6146bb507cb8cb8e1dd12de2a553543c494cafc 100644
--- a/ui/gl/gl_context_nsview.mm
+++ b/ui/gl/gl_context_nsview.mm
@@ -32,7 +32,7 @@ bool GLContextNSView::Initialize(GLSurface* surface,
attributes.push_back(NSOpenGLPFADoubleBuffer);
attributes.push_back(0);
- scoped_nsobject<NSOpenGLPixelFormat> pixel_format;
+ base::scoped_nsobject<NSOpenGLPixelFormat> pixel_format;
pixel_format.reset([[NSOpenGLPixelFormat alloc]
initWithAttributes:&attributes.front()]);
if (!pixel_format) {

Powered by Google App Engine
This is Rietveld 408576698