| Index: gpu/command_buffer/tests/gl_unittest.cc
|
| diff --git a/gpu/command_buffer/tests/gl_unittest.cc b/gpu/command_buffer/tests/gl_unittest.cc
|
| index b7fcad69558712793a8c85613d5db4dce2265300..e7eea1b29f3182bb739dec7cb0ef3b5f395002eb 100644
|
| --- a/gpu/command_buffer/tests/gl_unittest.cc
|
| +++ b/gpu/command_buffer/tests/gl_unittest.cc
|
| @@ -40,7 +40,7 @@ TEST_F(GLTest, BasicFBO) {
|
| GLuint fbo = 0;
|
| glGenFramebuffers(1, &fbo);
|
| glBindTexture(GL_TEXTURE_2D, tex);
|
| - scoped_ptr<uint8_t[]> pixels(new uint8_t[16 * 16 * 4]);
|
| + std::unique_ptr<uint8_t[]> pixels(new uint8_t[16 * 16 * 4]);
|
| memset(pixels.get(), 0, 16*16*4);
|
| glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 16, 16, 0, GL_RGBA, GL_UNSIGNED_BYTE,
|
| pixels.get());
|
|
|