| Index: content/gpu/gpu_info_collector_linux.cc
|
| diff --git a/content/gpu/gpu_info_collector_linux.cc b/content/gpu/gpu_info_collector_linux.cc
|
| index 56b380087cb9703d33a10af5b1c7a6f87b634594..29df28836e2114291ca5f19bd140c8d740fd31bb 100644
|
| --- a/content/gpu/gpu_info_collector_linux.cc
|
| +++ b/content/gpu/gpu_info_collector_linux.cc
|
| @@ -131,7 +131,7 @@ bool CollectPCIVideoCardInfo(content::GPUInfo* gpu_info) {
|
| gpu.device_id = device->device_id;
|
|
|
| const int buffer_size = 255;
|
| - scoped_array<char> buffer(new char[buffer_size]);
|
| + scoped_ptr<char[]> buffer(new char[buffer_size]);
|
| // The current implementation of pci_lookup_name returns the same pointer
|
| // as the passed in upon success, and a different one (NULL or a pointer
|
| // to an error message) upon failure.
|
|
|