| Index: chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| diff --git a/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc b/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| index 3c881d3262c91b19e9b4445f7a5b04a33b2a4be5..b6987ae4957f8d5d49b2e5ec01069a26822bed7c 100644
|
| --- a/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| +++ b/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| @@ -220,10 +220,10 @@ void BrowsingDataRemoverFunction::OnBrowsingDataRemoverDone() {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| this->SendResponse(true);
|
|
|
| - Release(); // Balanced in RunImpl.
|
| + Release(); // Balanced in RunAsync.
|
| }
|
|
|
| -bool BrowsingDataRemoverFunction::RunImpl() {
|
| +bool BrowsingDataRemoverFunction::RunAsync() {
|
| // If we don't have a profile, something's pretty wrong.
|
| DCHECK(GetProfile());
|
|
|
|
|