| Index: chrome/browser/extensions/startup_helper.cc
|
| diff --git a/chrome/browser/extensions/startup_helper.cc b/chrome/browser/extensions/startup_helper.cc
|
| index 80c2837da53243360442a90507d350f3d09bb0cc..0ec0f8bddc5a7559e20b2a0e8f3121623b4efff4 100644
|
| --- a/chrome/browser/extensions/startup_helper.cc
|
| +++ b/chrome/browser/extensions/startup_helper.cc
|
| @@ -143,7 +143,7 @@ class ValidateCrxHelper : public SandboxedUnpackerClient {
|
| Manifest::INTERNAL,
|
| 0, /* no special creation flags */
|
| temp_dir_,
|
| - file_thread_proxy,
|
| + file_thread_proxy.get(),
|
| this));
|
| unpacker->Start();
|
| }
|
| @@ -337,7 +337,7 @@ std::string StartupHelper::WebStoreIdFromLimitedInstallCmdLine(
|
| }
|
|
|
| StartupHelper::~StartupHelper() {
|
| - if (pack_job_)
|
| + if (pack_job_.get())
|
| pack_job_->ClearClient();
|
| }
|
|
|
|
|