| Index: chrome/browser/chrome_to_mobile_service.cc
|
| diff --git a/chrome/browser/chrome_to_mobile_service.cc b/chrome/browser/chrome_to_mobile_service.cc
|
| index 9a069caaf18a1668b3ac400b931dd51e48ff9897..8aafd71c38386793410057e0ba4dda0b396e2dd5 100644
|
| --- a/chrome/browser/chrome_to_mobile_service.cc
|
| +++ b/chrome/browser/chrome_to_mobile_service.cc
|
| @@ -205,7 +205,7 @@ void ReadSnapshotFile(scoped_ptr<ChromeToMobileService::JobData> data,
|
| // Call this as a BlockingPoolSequencedTask [after posting SubmitSnapshotFile].
|
| void DeleteSnapshotFile(const base::FilePath& snapshot) {
|
| DCHECK(!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| - bool success = base::Delete(snapshot, false);
|
| + bool success = base::DeleteFile(snapshot, false);
|
| DCHECK(success);
|
| }
|
|
|
|
|