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

Unified Diff: ui/gl/gl_surface_osmesa.h

Issue 11878022: ui: Convert scoped_arrays to the new scoped_ptr style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/base/x/x11_util_unittest.cc ('k') | ui/gl/gl_surface_osmesa.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_surface_osmesa.h
diff --git a/ui/gl/gl_surface_osmesa.h b/ui/gl/gl_surface_osmesa.h
index 77a3f63dc6e86f1730f1afa0e8692452982bed34..a823231fa0c44eccbe29e0ae3d114dd5e4cd64ab 100644
--- a/ui/gl/gl_surface_osmesa.h
+++ b/ui/gl/gl_surface_osmesa.h
@@ -34,7 +34,7 @@ class GL_EXPORT GLSurfaceOSMesa : public GLSurface {
private:
unsigned format_;
gfx::Size size_;
- scoped_array<int32> buffer_;
+ scoped_ptr<int32[]> buffer_;
DISALLOW_COPY_AND_ASSIGN(GLSurfaceOSMesa);
};
« no previous file with comments | « ui/base/x/x11_util_unittest.cc ('k') | ui/gl/gl_surface_osmesa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698