Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(549)

Unified Diff: chrome/browser/chromeos/app_mode/kiosk_external_update_validator.cc

Issue 1080453002: Always destroy CrxInstaller on the UI Thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CrOZ Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/app_mode/kiosk_external_update_validator.cc
diff --git a/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.cc b/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.cc
index b71ab94c8bb2ba6fad6a8bf67728dec602a9042f..89e2d0a037e82abf0b0ea0c3684430c25b46e479 100644
--- a/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.cc
+++ b/chrome/browser/chromeos/app_mode/kiosk_external_update_validator.cc
@@ -17,7 +17,10 @@ KioskExternalUpdateValidator::KioskExternalUpdateValidator(
const extensions::CRXFileInfo& file,
const base::FilePath& crx_unpack_dir,
const base::WeakPtr<KioskExternalUpdateValidatorDelegate>& delegate)
- : backend_task_runner_(backend_task_runner),
+ : SandboxedUnpackerClient(
+ content::BrowserThread::GetMessageLoopProxyForThread(
+ content::BrowserThread::UI)),
+ backend_task_runner_(backend_task_runner),
crx_file_(file),
crx_unpack_dir_(crx_unpack_dir),
delegate_(delegate) {

Powered by Google App Engine
This is Rietveld 408576698