| Index: chrome/browser/apps/drive/drive_app_converter.cc
|
| diff --git a/chrome/browser/apps/drive/drive_app_converter.cc b/chrome/browser/apps/drive/drive_app_converter.cc
|
| index 581b67c5ae68049fc552446e516157f3cb18ca87..94552b669c0a30b2db648f61b05afb5c7db14553 100644
|
| --- a/chrome/browser/apps/drive/drive_app_converter.cc
|
| +++ b/chrome/browser/apps/drive/drive_app_converter.cc
|
| @@ -7,6 +7,7 @@
|
| #include <algorithm>
|
| #include <set>
|
|
|
| +#include "base/callback_helpers.h"
|
| #include "base/logging.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -198,6 +199,6 @@ void DriveAppConverter::OnFinishCrxInstall(const std::string& extension_id,
|
| is_new_install_ = success && crx_installer_->current_version().empty();
|
| PostInstallCleanUp();
|
|
|
| - finished_callback_.Run(this, success);
|
| + base::ResetAndReturn(&finished_callback_).Run(this, success);
|
| // |finished_callback_| could delete this.
|
| }
|
|
|