| Index: content/browser/gpu/gpu_driver_bug_list_unittest.cc
|
| diff --git a/content/browser/gpu/gpu_driver_bug_list_unittest.cc b/content/browser/gpu/gpu_driver_bug_list_unittest.cc
|
| index b0322a3efc0c41b487d12c00203650452c3bd354..931274ca670956bf429b18b6da01beca4dbee4b8 100644
|
| --- a/content/browser/gpu/gpu_driver_bug_list_unittest.cc
|
| +++ b/content/browser/gpu/gpu_driver_bug_list_unittest.cc
|
| @@ -43,7 +43,7 @@ class GpuDriverBugListTest : public testing::Test {
|
| if (!file_util::GetFileSize(data_file, &data_file_size64))
|
| return false;
|
| int data_file_size = static_cast<int>(data_file_size64);
|
| - scoped_array<char> data(new char[data_file_size]);
|
| + scoped_ptr<char[]> data(new char[data_file_size]);
|
| if (file_util::ReadFile(data_file, data.get(), data_file_size) !=
|
| data_file_size)
|
| return false;
|
|
|