summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/startup_helper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/startup_helper.cc')
-rw-r--r--chrome/browser/extensions/startup_helper.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/startup_helper.cc b/chrome/browser/extensions/startup_helper.cc
index 80c2837..0ec0f8b 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();
}