| Index: chrome/common/chrome_paths_mac.mm
|
| diff --git a/chrome/common/chrome_paths_mac.mm b/chrome/common/chrome_paths_mac.mm
|
| index 80401c4bc3e12e51a9690aeb70b19992fa4b14c2..1a0e256823f7e472a1b26e244b461a4cff3ad63c 100644
|
| --- a/chrome/common/chrome_paths_mac.mm
|
| +++ b/chrome/common/chrome_paths_mac.mm
|
| @@ -232,7 +232,8 @@ NSBundle* OuterAppBundle() {
|
|
|
| bool GetUserDataDirectoryForBrowserBundle(NSBundle* bundle,
|
| base::FilePath* result) {
|
| - scoped_ptr_malloc<char> product_dir_name(ProductDirNameForBundle(bundle));
|
| + scoped_ptr<char, base::FreeDeleter>
|
| + product_dir_name(ProductDirNameForBundle(bundle));
|
| return GetDefaultUserDataDirectoryForProduct(product_dir_name.get(), result);
|
| }
|
|
|
|
|