| Index: gpu/gles2_conform_support/native/main.cc
|
| diff --git a/gpu/gles2_conform_support/native/main.cc b/gpu/gles2_conform_support/native/main.cc
|
| index be1fa72dda0010c85e18fa9ef02090e2de1a9d01..672b21276a9c9418585ecb60980d944d76793cd3 100644
|
| --- a/gpu/gles2_conform_support/native/main.cc
|
| +++ b/gpu/gles2_conform_support/native/main.cc
|
| @@ -4,9 +4,10 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/at_exit.h"
|
| #include "base/command_line.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| #if defined(OS_MACOSX)
|
| #include "base/mac/scoped_nsautorelease_pool.h"
|
| @@ -36,7 +37,7 @@ int main(int argc, char *argv[]) {
|
| base::mac::ScopedNSAutoreleasePool pool;
|
| #endif
|
|
|
| - scoped_ptr<const char*[]> argsArray(new const char*[args.size()+1]);
|
| + std::unique_ptr<const char* []> argsArray(new const char*[args.size() + 1]);
|
| argsArray[0] = argv[0];
|
|
|
| #if defined(OS_WIN)
|
|
|